Skip to content

Commit

Permalink
Merge pull request #6810 from jmacxx/tx_validation_timing_issue
Browse files Browse the repository at this point in the history
Allow Tx validation requests when the DAO state is ready.
  • Loading branch information
alejandrogarcia83 authored Aug 15, 2023
2 parents cc183ca + ec9a3b6 commit bbaf3dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void onAllServicesInitialized() {
}

public boolean canRequestBeMade() {
return outstandingRequests < 5; // limit max simultaneous lookups
return daoStateService.isParseBlockChainComplete() && outstandingRequests < 5; // limit max simultaneous lookups
}

public boolean canRequestBeMade(OfferPayload offerPayload) {
Expand Down

0 comments on commit bbaf3dc

Please sign in to comment.