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 e9a34f4 commit 043fdbfCopy full SHA for 043fdbf
chainbase/src/main/java/org/tron/core/db/TransactionTrace.java
@@ -255,7 +255,7 @@ public void pay() throws BalanceInsufficientException {
255
AccountCapsule origin = accountStore.get(originAccount);
256
AccountCapsule caller = accountStore.get(callerAccount);
257
if (dynamicPropertiesStore.supportUnfreezeDelay()
258
- && receipt.getReceipt().getResult().equals(contractResult.SUCCESS)) {
+ && getRuntimeResult().getException() == null && !getRuntimeResult().isRevert()) {
259
260
// just fo caller is not origin, we set the related field for origin account
261
if (origin != null && !caller.getAddress().equals(origin.getAddress())) {
0 commit comments