closing and reopening popup while on 'transaction' view causes raw data and action decoding to disappear #60
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sneak/AutistMask#60
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
this decoding should not be separate from the rendering of any other part of the view
Fix submitted in #61. The issue was that
loadCalldata()was only called fromshow()(initial navigation), but on popup reopenrestoreViewcallsrender()directly, which hid the calldata section and never re-fetched it. Moved theloadCalldata()call intorender()so it fires whenever a contract call transaction is displayed, regardless of entry path.