mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Fix issue if BTC taker fee validation requested before DAO state is ready.
This commit is contained in:
parent
ec9a3b6491
commit
e208b3f0c1
@ -300,6 +300,10 @@ public class MempoolService {
|
|||||||
log.info("MempoolService only supports mainnet");
|
log.info("MempoolService only supports mainnet");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (!canRequestBeMade()) {
|
||||||
|
log.info("Tx Validation bypassed as service is not ready");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user