Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
konradkonrad committed Jul 8, 2016
1 parent abb8515 commit fc43b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ def get_storage_data(self, address, index):
if len(bytez) >= 32:
return big_endian_to_int(bytez[-32:])
else:
return big_endian_to_int(bytez) * (1 << (8 * (32 - len(bytes))))
return big_endian_to_int(bytez) * (1 << (8 * (32 - len(bytez))))

def set_storage_data(self, address, index, value):
"""Set a specific item in the storage of an account.
Expand Down

0 comments on commit fc43b03

Please sign in to comment.