We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0090c2 commit c1f78c7Copy full SHA for c1f78c7
src/main/java/org/fisco/bcos/sdk/v3/contract/precompiled/sysconfig/SystemConfigService.java
@@ -57,7 +57,6 @@ public class SystemConfigService {
57
predicateMap.put(
58
TX_GAS_LIMIT, value -> value.compareTo(BigInteger.valueOf(TX_GAS_LIMIT_MIN)) >= 0);
59
predicateMap.put(TX_GAS_PRICE, value -> value.compareTo(BigInteger.ZERO) >= 0);
60
- predicateMap.put(COMPATIBILITY_VERSION, value -> true);
61
}
62
63
public SystemConfigService(Client client, CryptoKeyPair credential) {
0 commit comments