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
tx goes to A -> {CALL, CALLCODE, DELEGATECALL} A -> do stuff | then again {CALL, CALLCODE, DELEGATECALL} A but with {OOG, REVERT, SUICIDE} | then just do stuff on the first level of depth and see what happens to the storage
no recurtion, use different function entrance in contract A
tx -> a
a.method1(), ok,
a.method2() -> {OOG, SUICIDE, REVERT}
a.method3() -> put smth to the storage
The text was updated successfully, but these errors were encountered:
tx goes to A -> {CALL, CALLCODE, DELEGATECALL} A -> do stuff | then again {CALL, CALLCODE, DELEGATECALL} A but with {OOG, REVERT, SUICIDE} | then just do stuff on the first level of depth and see what happens to the storage
no recurtion, use different function entrance in contract A
tx -> a
a.method1(), ok,
a.method2() -> {OOG, SUICIDE, REVERT}
a.method3() -> put smth to the storage
The text was updated successfully, but these errors were encountered: