Skip to content

Commit 80b9cad

Browse files
Merge pull request #6247 from raymondliu0711/feature/opt_kzg_log
opt(tvm): kzg precompile contract log
2 parents b414f7d + 716af38 commit 80b9cad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actuator/src/main/java/org/tron/core/vm/PrecompiledContracts.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2239,8 +2239,8 @@ public Pair<Boolean, byte[]> execute(byte[] data) {
22392239
} else {
22402240
return Pair.of(false, DataWord.ZERO().getData());
22412241
}
2242-
} catch (RuntimeException exception) {
2243-
logger.warn("KZG point evaluation precompile contract failed", exception);
2242+
} catch (RuntimeException e) {
2243+
logger.warn("KZG point evaluation precompile contract failed {}", e.getMessage());
22442244
return Pair.of(false, DataWord.ZERO().getData());
22452245
}
22462246
}

0 commit comments

Comments
 (0)