Allow bisq network to be "bisq".

This commit is contained in:
softsimon 2020-10-15 11:15:04 +07:00
parent 9cba1790da
commit ba441278c4

View File

@ -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;