mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-03 10:46:42 +01:00
Fix bug where we weren't waiting on a future to complete in for expression (#3627)
This commit is contained in:
parent
f5ed232946
commit
1f35dbdb85
1 changed files with 3 additions and 3 deletions
|
@ -41,9 +41,9 @@ class BitcoindBlockPollingTest
|
|||
_ = assert(firstBalance == Satoshis.zero)
|
||||
|
||||
// Setup block polling
|
||||
_ = BitcoindRpcBackendUtil.startBitcoindBlockPolling(wallet,
|
||||
bitcoind,
|
||||
1.second)
|
||||
_ <- BitcoindRpcBackendUtil.startBitcoindBlockPolling(wallet,
|
||||
bitcoind,
|
||||
1.second)
|
||||
_ <- bitcoind.generateToAddress(6, bech32Address)
|
||||
|
||||
// Wait for it to process
|
||||
|
|
Loading…
Add table
Reference in a new issue