Skip to content

Commit

Permalink
<fix>(precompiled): fix predicate map bug in system service. (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Oct 23, 2024
1 parent a0090c2 commit c1f78c7
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public class SystemConfigService {
predicateMap.put(
TX_GAS_LIMIT, value -> value.compareTo(BigInteger.valueOf(TX_GAS_LIMIT_MIN)) >= 0);
predicateMap.put(TX_GAS_PRICE, value -> value.compareTo(BigInteger.ZERO) >= 0);
predicateMap.put(COMPATIBILITY_VERSION, value -> true);
}

public SystemConfigService(Client client, CryptoKeyPair credential) {
Expand Down

0 comments on commit c1f78c7

Please sign in to comment.