Allow bisq network to be "bisq".

This commit is contained in:
softsimon 2020-10-15 11:15:04 +07:00
parent 472b1d35c2
commit b767a0a33e
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -135,7 +135,7 @@ class Mempool {
} }
// Prevent mempool from clear on bitcoind restart by delaying the deletion // 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 === 0 && transactions.length / currentMempoolSize <= 0.80) {
this.mempoolProtection = 1; this.mempoolProtection = 1;
this.inSync = false; this.inSync = false;