We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1759d7 commit 407e957Copy full SHA for 407e957
src/tests/functional_tests.rs
@@ -142,9 +142,9 @@ fn channel_full_cycle() {
142
let node_b_addr =
143
format!("{}@{}", node_b.node_id().unwrap(), node_b.listening_address().unwrap());
144
node_a.connect_open_channel(&node_b_addr, 50000, true).unwrap();
145
- // TODO: why are those needed?
146
- node_a.sync_wallets().unwrap();
147
- node_b.sync_wallets().unwrap();
+
+ // Wait a sec so the funding tx can 'propagate' via EsploraD to BitcoinD.
+ std::thread::sleep(Duration::from_secs(1));
148
149
println!("\n .. generating blocks, syncing wallets .. ");
150
generate_blocks_and_wait(6);
0 commit comments