mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2024-12-25 23:39:38 -05:00
support stopOnFailure
for batch trades
This commit is contained in:
parent
e3709a226f
commit
fb20c4b736
@ -172,9 +172,10 @@ const TestConfig = {
|
|||||||
disputeWinner: DisputeResult.Winner.SELLER,
|
disputeWinner: DisputeResult.Winner.SELLER,
|
||||||
disputeReason: DisputeResult.Reason.PEER_WAS_LATE,
|
disputeReason: DisputeResult.Reason.PEER_WAS_LATE,
|
||||||
disputeSummary: "Seller is winner",
|
disputeSummary: "Seller is winner",
|
||||||
maxConcurrency: 14,
|
|
||||||
walletSyncPeriodMs: 7000, // TODO (woodser): auto adjust higher if using remote connection
|
walletSyncPeriodMs: 7000, // TODO (woodser): auto adjust higher if using remote connection
|
||||||
maxTimePeerNoticeMs: 5000,
|
maxTimePeerNoticeMs: 5000,
|
||||||
|
maxConcurrency: 14,
|
||||||
|
stopOnFailure: false
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -255,7 +256,7 @@ interface TradeContext {
|
|||||||
maxConcurrency?: number,
|
maxConcurrency?: number,
|
||||||
walletSyncPeriodMs?: number,
|
walletSyncPeriodMs?: number,
|
||||||
maxTimePeerNoticeMs?: number,
|
maxTimePeerNoticeMs?: number,
|
||||||
|
stopOnFailure?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
enum TradeRole {
|
enum TradeRole {
|
||||||
@ -1794,7 +1795,7 @@ async function executeTrades(ctxs: TradeContext[], executionCtx?: TradeContext):
|
|||||||
const offerIdBatch = await Promise.all(tradePromises);
|
const offerIdBatch = await Promise.all(tradePromises);
|
||||||
for (const offerId of offerIdBatch) offerIds.push(offerId);
|
for (const offerId of offerIdBatch) offerIds.push(offerId);
|
||||||
} catch (e2) {
|
} catch (e2) {
|
||||||
await Promise.allSettled(tradePromises); // wait for other trades to complete before throwing error
|
if (!executionCtx.stopOnFailure) await Promise.allSettled(tradePromises); // wait for other trades to complete before throwing error
|
||||||
throw e2;
|
throw e2;
|
||||||
}
|
}
|
||||||
batchNum++;
|
batchNum++;
|
||||||
|
Loading…
Reference in New Issue
Block a user