Fixed output decoding for ResolvedInput
This commit is contained in:
@@ -77,10 +77,10 @@ pub fn eval_phase_two_raw(
|
|||||||
|
|
||||||
let mut utxos = Vec::new();
|
let mut utxos = Vec::new();
|
||||||
|
|
||||||
for (input, _output) in utxos_bytes {
|
for (input, output) in utxos_bytes {
|
||||||
utxos.push(ResolvedInput {
|
utxos.push(ResolvedInput {
|
||||||
input: TransactionInput::decode_fragment(input)?,
|
input: TransactionInput::decode_fragment(input)?,
|
||||||
output: TransactionOutput::decode_fragment(input)?,
|
output: TransactionOutput::decode_fragment(output)?,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user