Skip to content

Commit

Permalink
Merge pull request #6814 from jmacxx/tx_validation_timing_issue
Browse files Browse the repository at this point in the history
Fix: BTC maker/taker fee validation
  • Loading branch information
alejandrogarcia83 authored Aug 19, 2023
2 parents a2dca3e + e208b3f commit 34d61d1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,10 @@ private boolean isServiceSupported() {
log.info("MempoolService only supports mainnet");
return false;
}
if (!canRequestBeMade()) {
log.info("Tx Validation bypassed as service is not ready");
return false;
}
return true;
}
}

0 comments on commit 34d61d1

Please sign in to comment.