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
feat: run transactions without checking the return value
Transactions were decoded into callTx(..., Void), which asserts the
call returns Void, so any contract invocation returning a value got
stuck in the semantics and was recorded as FAILED. Decode callTx steps
into uncheckedCallTx instead, which performs the same call but drops
the return value check.
0 commit comments