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
> act hevm --spec src/auth.act --soljson out/dapp.sol.json
act: "Auth_rely_wards-Auth_rely_CALLER" not found in fromList []
CallStack (from HasCallStack):
error, called at HEVM.hs:479:28 in main:HEVM
This is because locateStorage always returns a pair of integers, even if the storage item we want to locate is a boolean type. Later when we try to lookup these storage values in SymExpBool they are stripped because they have type SymInteger instead of SymBool.
The text was updated successfully, but these errors were encountered:
If I attempt to prove the following spec:
against this contract:
I get the following error:
This is because
locateStorage
always returns a pair of integers, even if the storage item we want to locate is a boolean type. Later when we try to lookup these storage values inSymExpBool
they are stripped because they have typeSymInteger
instead ofSymBool
.The text was updated successfully, but these errors were encountered: