Skip to content

Commit fd31d52

Browse files
committed
f
1 parent 384516e commit fd31d52

File tree

1 file changed

+8
-20
lines changed

1 file changed

+8
-20
lines changed

lightning-transaction-sync/tests/integration_tests.rs

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -182,29 +182,17 @@ macro_rules! test_syncing {
182182
.assume_checked();
183183
let txid = $bitcoind
184184
.client
185-
.send_to_address(
186-
&new_address,
187-
Amount::from_sat(5000),
188-
None,
189-
None,
190-
None,
191-
None,
192-
None,
193-
None,
194-
)
185+
.send_to_address(&new_address, Amount::from_sat(5000))
186+
.unwrap()
187+
.0
188+
.parse()
195189
.unwrap();
196190
let second_txid = $bitcoind
197191
.client
198-
.send_to_address(
199-
&new_address,
200-
Amount::from_sat(5000),
201-
None,
202-
None,
203-
None,
204-
None,
205-
None,
206-
None,
207-
)
192+
.send_to_address(&new_address, Amount::from_sat(5000))
193+
.unwrap()
194+
.0
195+
.parse()
208196
.unwrap();
209197
$tx_sync.register_tx(&txid, &new_address.script_pubkey());
210198

0 commit comments

Comments
 (0)