Made txin mutable

This commit is contained in:
CalDescent 2022-05-18 19:29:18 +01:00
parent 10c3389f17
commit dda640b336

View File

@ -195,7 +195,7 @@ impl TransparentInputs {
// _ => return Err(Error::InvalidAddress),
// }
let txin = TxIn::new(utxo);
let mut txin = TxIn::new(utxo);
// Set lock time if present
if (lock_time > 0) {