You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature request: command to display non-parametric error message as original text instead of unicode string of hash for reverted transactions on verified smart contracts
#229
it is displayed as 3�J --> convert to hexadecimal 0x33984a19 ---> which is a hash of DuplicateCluster() (run cast sig 'DuplicateCluster()' to verify it)
hcli command to parse the above automatically, by processing the above automatically and display DuplicateCluster() instead of 3�J
no need to do this for all reverted SC transactions, apply the following filters: (1) only needed for verified SCs will need to precompute hashes of errors from the ABI, and (2) only needed for errors with zero parameters, as we can tackle the parametric errors in a separate feature request that is expected to be more complex to implement
Why:
easier to tell at a glance why a transaction has failed
aids in debugging SC failures
reduce support volume from integration partners (this is a live example)
The text was updated successfully, but these errors were encountered:
What:
3�J
--> convert to hexadecimal0x33984a19
---> which is a hash ofDuplicateCluster()
(runcast sig 'DuplicateCluster()'
to verify it)DuplicateCluster()
instead of3�J
Why:
The text was updated successfully, but these errors were encountered: