diff --git a/backend/src/api/mempool.ts b/backend/src/api/mempool.ts index 915fdb783..f9a6b6d0c 100644 --- a/backend/src/api/mempool.ts +++ b/backend/src/api/mempool.ts @@ -135,7 +135,7 @@ class Mempool { } // Prevent mempool from clear on bitcoind restart by delaying the deletion - if ((config.NETWORK === 'mainnet' || !config.NETWORK) + if ((config.NETWORK === 'mainnet' || config.NETWORK === 'bisq' || !config.NETWORK) && this.mempoolProtection === 0 && transactions.length / currentMempoolSize <= 0.80) { this.mempoolProtection = 1; this.inSync = false;