Skip to content

Commit

Permalink
fix name shadow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iostat committed Apr 19, 2018
1 parent b77accd commit 76327ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/AbiParser.purs
Expand Up @@ -319,7 +319,7 @@ instance decodeJsonAbi :: DecodeJson (Abi (Either AbiDecodeError)) where
arr <- note "Failed to decode ABI as Array type." $ A.toArray json
pure $ Abi $ mapWithIndex safeDecode arr
where
safeDecode idx json = decodeJson json # lmap \error -> AbiDecodeError {idx , error}
safeDecode idx json' = decodeJson json' # lmap \error -> AbiDecodeError {idx , error}

instance showAbi ::
( Functor f
Expand Down

0 comments on commit 76327ea

Please sign in to comment.