diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-19 21:22:29 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-19 21:22:29 +0100 |
commit | aa37ef082d0e4aaedeb219d0a3f726da146edba7 (patch) | |
tree | 2d5ebc419cf9e261cfa025340ca01f37d568fdc1 /src/headless | |
parent | 0c9358c1b2bd80e25940022e86bd8daef8184ad7 (diff) |
do normal back-off when reserve isn't ready yet, run retry-loop in integration test
Diffstat (limited to 'src/headless')
-rw-r--r-- | src/headless/integrationtest.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/headless/integrationtest.ts b/src/headless/integrationtest.ts index 7c513e70e..494f7c024 100644 --- a/src/headless/integrationtest.ts +++ b/src/headless/integrationtest.ts @@ -40,6 +40,11 @@ export async function runIntegrationTest(args: { const myWallet = await getDefaultNodeWallet({ httpLib: myHttpLib }); + + myWallet.runRetryLoop().catch((e) => { + console.error("exception during retry loop:", e); + }); + logger.info("withdrawing test balance"); await withdrawTestBalance(myWallet, args.amountToWithdraw, args.bankBaseUrl, args.exchangeBaseUrl); logger.info("done withdrawing test balance"); |