Skip to content

Commit e3d7aaf

Browse files
committed
<fix>(precompiled): fix predicate map bug in system service.
1 parent a0090c2 commit e3d7aaf

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/org/fisco/bcos/sdk/v3/contract/precompiled/sysconfig/SystemConfigService.java

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public class SystemConfigService {
5757
predicateMap.put(
5858
TX_GAS_LIMIT, value -> value.compareTo(BigInteger.valueOf(TX_GAS_LIMIT_MIN)) >= 0);
5959
predicateMap.put(TX_GAS_PRICE, value -> value.compareTo(BigInteger.ZERO) >= 0);
60-
predicateMap.put(COMPATIBILITY_VERSION, value -> true);
6160
}
6261

6362
public SystemConfigService(Client client, CryptoKeyPair credential) {

0 commit comments

Comments
 (0)