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

Commit

Permalink
Fix encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
konradkonrad committed Jul 6, 2016
1 parent 2c167f4 commit 1c35ecc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ethereum/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from rlp.utils import decode_hex
from ethereum import utils
from ethereum.db import BaseDB

Expand Down Expand Up @@ -52,7 +53,7 @@
METROPOLIS_STATEROOT_STORE=0x10,
METROPOLIS_BLOCKHASH_STORE=0x20,
METROPOLIS_WRAPAROUND=65536,
METROPOLIS_GETTER_CODE='6000355460205260206020f3'.decode('hex'),
METROPOLIS_GETTER_CODE=decode_hex('6000355460205260206020f3'),
)
assert default_config['NEPHEW_REWARD'] == \
default_config['BLOCK_REWARD'] // 32
Expand Down

0 comments on commit 1c35ecc

Please sign in to comment.