diff --git a/lib/Echidna/ABI.hs b/lib/Echidna/ABI.hs index 6c6d6d10e..f4b174dd2 100644 --- a/lib/Echidna/ABI.hs +++ b/lib/Echidna/ABI.hs @@ -71,6 +71,7 @@ ppAbiValue = \case AbiInt _ n -> show n AbiAddress n -> "0x" <> showHex n "" AbiBool b -> if b then "true" else "false" + AbiBytes 32 b -> "0x" <> BS.foldr showHex "" b AbiBytes _ b -> show b AbiBytesDynamic b -> show b AbiString s -> show s