You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lightning/src/chain/keysinterface.rs
+9-9
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ use bitcoin::secp256k1::recovery::RecoverableSignature;
31
31
use bitcoin::secp256k1;
32
32
33
33
use util::{byte_utils, transaction_utils};
34
-
use util::crypto::hkdf_extract_expand_twice;
34
+
use util::crypto::{hkdf_extract_expand_twice, sign};
35
35
use util::ser::{Writeable,Writer,Readable,ReadableArgs};
36
36
37
37
use chain::transaction::OutPoint;
@@ -590,7 +590,7 @@ impl InMemorySigner {
590
590
let remotepubkey = self.pubkeys().payment_point;
591
591
let witness_script = bitcoin::Address::p2pkh(&::bitcoin::PublicKey{compressed:true,key: remotepubkey},Network::Testnet).script_pubkey();
592
592
let sighash = hash_to_message!(&bip143::SigHashCache::new(spend_tx).signature_hash(input_idx,&witness_script, descriptor.output.value,SigHashType::All)[..]);
593
-
let remotesig = secp_ctx.sign(&sighash,&self.payment_key);
593
+
let remotesig = sign(secp_ctx,&sighash,&self.payment_key);
594
594
let payment_script = bitcoin::Address::p2wpkh(&::bitcoin::PublicKey{compressed:true,key: remotepubkey},Network::Bitcoin).unwrap().script_pubkey();
595
595
596
596
if payment_script != descriptor.output.script_pubkey{returnErr(());}
@@ -624,7 +624,7 @@ impl InMemorySigner {
624
624
let delayed_payment_pubkey = PublicKey::from_secret_key(&secp_ctx,&delayed_payment_key);
625
625
let witness_script = chan_utils::get_revokeable_redeemscript(&descriptor.revocation_pubkey, descriptor.to_self_delay,&delayed_payment_pubkey);
626
626
let sighash = hash_to_message!(&bip143::SigHashCache::new(spend_tx).signature_hash(input_idx,&witness_script, descriptor.output.value,SigHashType::All)[..]);
627
-
let local_delayedsig = secp_ctx.sign(&sighash,&delayed_payment_key);
627
+
let local_delayedsig = sign(secp_ctx,&sighash,&delayed_payment_key);
628
628
let payment_script = bitcoin::Address::p2wsh(&witness_script,Network::Bitcoin).script_pubkey();
629
629
630
630
if descriptor.output.script_pubkey != payment_script {returnErr(());}
@@ -673,7 +673,7 @@ impl BaseSign for InMemorySigner {
673
673
let htlc_sighashtype = ifself.opt_anchors(){SigHashType::SinglePlusAnyoneCanPay}else{SigHashType::All};
674
674
let htlc_sighash = hash_to_message!(&bip143::SigHashCache::new(&htlc_tx).signature_hash(0,&htlc_redeemscript, htlc.amount_msat / 1000, htlc_sighashtype)[..]);
675
675
let holder_htlc_key = chan_utils::derive_private_key(&secp_ctx,&keys.per_commitment_point,&self.htlc_base_key).map_err(|_| ())?;
let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(&this_htlc,self.opt_anchors(),&keys.broadcaster_htlc_key,&keys.countersignatory_htlc_key,&keys.revocation_key);
1416
1417
1417
1418
let sighash = hash_to_message!(&bip143::SigHashCache::new(&htlc_tx).signature_hash(0,&htlc_redeemscript, this_htlc.amount_msat / 1000,SigHashType::All)[..]);
0 commit comments