Merge pull request #6814 from jmacxx/tx_validation_timing_issue

Fix: BTC maker/taker fee validation
This commit is contained in:
Alejandro García 2023-08-19 19:45:06 +00:00 committed by GitHub
commit 34d61d1f56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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