Skip to content

Commit

Permalink
fix for 1347
Browse files Browse the repository at this point in the history
  • Loading branch information
tenuki authored and kclowes committed Dec 2, 2019
1 parent 916d0d3 commit cbcbd4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web3/_utils/method_formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ def is_attrdict(val):
'value': to_integer_if_hex,
'from': to_checksum_address,
'publicKey': apply_formatter_if(is_not_null, to_hexbytes(64)),
'r': to_hexbytes(32, variable_length=True),
'r': apply_formatter_if(is_not_null, to_hexbytes(32, variable_length=True)),
'raw': HexBytes,
's': to_hexbytes(32, variable_length=True),
's': apply_formatter_if(is_not_null, to_hexbytes(32, variable_length=True)),
'to': apply_formatter_if(is_address, to_checksum_address),
'hash': to_hexbytes(32),
'v': apply_formatter_if(is_not_null, to_integer_if_hex),
Expand Down

0 comments on commit cbcbd4f

Please sign in to comment.