mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Merge pull request #6814 from jmacxx/tx_validation_timing_issue
Fix: BTC maker/taker fee validation
This commit is contained in:
commit
34d61d1f56
1 changed files with 4 additions and 0 deletions
|
@ -300,6 +300,10 @@ public class MempoolService {
|
|||
log.info("MempoolService only supports mainnet");
|
||||
return false;
|
||||
}
|
||||
if (!canRequestBeMade()) {
|
||||
log.info("Tx Validation bypassed as service is not ready");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue