Skip to content

Commit fa203fe

Browse files
authored
Merge pull request crytic#1445 from VolodymyrBg/bg
fix: ppAbiValue mapping in JSON.mapCall for SolCall
2 parents c11342d + cfd5a7a commit fa203fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Echidna/Output/JSON.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ mapTest dappInfo test =
144144

145145
mapCall = \case
146146
SolCreate _ -> ("<CREATE>", Nothing)
147-
SolCall (name, args) -> (name, Just $ ppAbiValue <$> mempty <*> args)
147+
SolCall (name, args) -> (name, Just $ ppAbiValue mempty <$> args)
148148
NoCall -> ("*wait*", Nothing)
149149
SolCalldata x -> (decodeUtf8 $ "0x" <> BS16.encode x, Nothing)

0 commit comments

Comments
 (0)