Skip to content

Commit beb9b38

Browse files
committed
fix: tests
1 parent 6852e5f commit beb9b38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ impl BitcoinRegtestController {
767767
vec![utxo],
768768
)
769769
} else {
770-
self.prepare_tx(&public_key, DUST_UTXO_LIMIT, 1)?
770+
self.prepare_tx(&public_key, DUST_UTXO_LIMIT, &vec![], &vec![])?
771771
};
772772

773773
// Serialize the payload
@@ -827,7 +827,7 @@ impl BitcoinRegtestController {
827827
let public_key = signer.get_public_key();
828828

829829
let output_amt = 2 * DUST_UTXO_LIMIT;
830-
let (mut tx, utxos) = self.prepare_tx(&public_key, output_amt, 1)?;
830+
let (mut tx, utxos) = self.prepare_tx(&public_key, output_amt, &vec![], &vec![])?;
831831

832832
// Serialize the payload
833833
let op_bytes = {

0 commit comments

Comments
 (0)