Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Fix bug in debug_traceTransaction storage logging
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincburns committed Feb 27, 2018
1 parent 08842b5 commit ce192aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/blockchain_double.js
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ BlockchainDouble.prototype.processStorageTrace = function(structLog, storageStac
.map((arg) => to.hex(arg));

if (storageStack.currentDepth > event.depth) {
storageStack.pop()
storageStack.stack.pop()
} if (storageStack.currentDepth < event.depth) {
storageStack.stack.push({})
}
Expand Down

0 comments on commit ce192aa

Please sign in to comment.