Try bumping the Thread.sleep() to get CI to pass on slow mac osx (#1042)

This commit is contained in:
Chris Stewart 2020-01-19 09:41:54 -06:00 committed by GitHub
parent 15bfe4f4d9
commit 03ed5b0d57

View File

@ -384,7 +384,7 @@ object BitcoinSWalletTest extends WalletLogger {
//this Thread.sleep is needed because of //this Thread.sleep is needed because of
//https://github.com/bitcoin-s/bitcoin-s/issues/1009 //https://github.com/bitcoin-s/bitcoin-s/issues/1009
//once that is resolved we should be able to remove this //once that is resolved we should be able to remove this
Thread.sleep(250) Thread.sleep(500)
wallet.getNewAddress() wallet.getNewAddress()
}) })