diff --git a/xmr-btc/tests/harness/wallet/monero.rs b/xmr-btc/tests/harness/wallet/monero.rs index 9faf7dd8..b5991152 100644 --- a/xmr-btc/tests/harness/wallet/monero.rs +++ b/xmr-btc/tests/harness/wallet/monero.rs @@ -111,7 +111,10 @@ impl WatchForTransfer for BobWallet<'_> { Ok(proof) }) - .retry(ExponentialBackoff::default()) + .retry(ExponentialBackoff { + max_elapsed_time: None, + ..Default::default() + }) .await; if let Err(Error::InsufficientFunds { expected, actual }) = res {