Remove deprecated method use for sighash conversion
Post-merge #796 follow-up. Feel free to add other changes/nits which hadn't get into #796.
This commit is contained in:
parent
6417c37749
commit
c3d30d51a7
|
@ -356,7 +356,7 @@ impl Transaction {
|
|||
return Ok(())
|
||||
}
|
||||
|
||||
let (sighash, anyone_can_pay) = EcdsaSigHashType::from_u32_consensus(sighash_type).split_anyonecanpay_flag();
|
||||
let (sighash, anyone_can_pay) = EcdsaSigHashType::from_consensus(sighash_type).split_anyonecanpay_flag();
|
||||
|
||||
// Build tx to sign
|
||||
let mut tx = Transaction {
|
||||
|
|
Loading…
Reference in New Issue