We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa203fe + 1b498bd commit 00db3aeCopy full SHA for 00db3ae
lib/Echidna/Output/JSON.hs
@@ -130,7 +130,7 @@ mapTest dappInfo test =
130
mapTestState T.Solved txs = (Solved, Just $ mapTx <$> txs, Nothing)
131
mapTestState T.Unsolvable _ = (Verified, Nothing, Nothing)
132
mapTestState (T.Large _) txs = (Shrinking, Just $ mapTx <$> txs, Nothing)
133
- mapTestState (T.Failed e) _ = (Error, Nothing, Just $ show e) -- TODO add (show e)
+ mapTestState (T.Failed e) _ = (Error, Nothing, Just $ Prelude.show e) -- TODO add (show e)
134
135
mapTx tx =
136
let (function, args) = mapCall tx.call
0 commit comments