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

Commit 41adae7

Browse files
committed
Reverse test for subnode return status
1 parent 873542b commit 41adae7

File tree

1 file changed

+1
-1
lines changed
  • packages/debugger/lib/txlog/selectors

1 file changed

+1
-1
lines changed

packages/debugger/lib/txlog/selectors/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ let txlog = createSelectorTree({
450450
getFlattedEvents(subNode, node.origin, node.origin, status)
451451
);
452452
case "callexternal":
453-
const subNodeStatus = ["return", "selfdestruct"].includes(
453+
const subNodeStatus = !["revert", "unwind"].includes(
454454
node.returnKind
455455
);
456456
return node.actions.flatMap(subNode =>

0 commit comments

Comments
 (0)