We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31d5ef3 commit 987627dCopy full SHA for 987627d
lib/Echidna/SymExec/Exploration.hs
@@ -44,6 +44,7 @@ import Echidna.Worker (pushWorkerEvent)
44
-- The Tx argument, if present, must have a .call value of type SolCall.
45
46
getTargetMethodFromTx :: (MonadIO m, MonadReader Echidna.Types.Config.Env m) => Tx -> SolcContract -> [String] -> m (Maybe Method)
47
+getTargetMethodFromTx (Tx { call = SolCall ("", _) }) _ _ = return Nothing
48
getTargetMethodFromTx (Tx { call = SolCall (methodName, _) }) contract failedProperties = do
49
env <- ask
50
let allMethods = Map.assocs contract.abiMap
0 commit comments