Skip to content

Commit

Permalink
Change storage to concrete in symexec
Browse files Browse the repository at this point in the history
  • Loading branch information
arcz committed Jun 14, 2023
1 parent 94f063a commit 99d1c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Echidna/SymExec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ exploreContract dst contract = do
forM methods $ \method -> do
let
calldata = mkCalldata (Just (Sig method.methodSignature (snd <$> method.inputs))) []
vmSym = abstractVM calldata contract.runtimeCode Nothing AbstractStore
vmSym = abstractVM calldata contract.runtimeCode Nothing (ConcreteStore mempty)
maxIter = Just 10
askSmtIters = Just 5
rpcInfo = Nothing
Expand Down

0 comments on commit 99d1c9b

Please sign in to comment.