Skip to content

Commit

Permalink
hlint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrieco-tob committed Sep 18, 2023
1 parent 7807107 commit eb94933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Echidna/ABI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,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 (\x -> (<>) (printf "%02x" x)) "" b)
AbiBytes 32 b -> "0x" <> BS.foldr ((<>) . printf "%02x") "" b
AbiBytes _ b -> show b
AbiBytesDynamic b -> show b
AbiString s -> show s
Expand Down

0 comments on commit eb94933

Please sign in to comment.