diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-01-17 21:36:07 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-04-25 22:14:58 +0800 |
commit | 56e4b8269636e2906298ccface74cdebff4244ad (patch) | |
tree | 63f3b1a24ebb4c89df9705ae1f25fbf5a2514fb7 | |
parent | 4e24639e396a6ed540b1382d915903c1334c1b66 (diff) | |
download | dexon-solidity-56e4b8269636e2906298ccface74cdebff4244ad.tar.gz dexon-solidity-56e4b8269636e2906298ccface74cdebff4244ad.tar.zst dexon-solidity-56e4b8269636e2906298ccface74cdebff4244ad.zip |
libevmasm: reflect EIP 160 gas schedule change
-rw-r--r-- | libevmasm/GasMeter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/GasMeter.h b/libevmasm/GasMeter.h index 146f08a2..6ee8ea74 100644 --- a/libevmasm/GasMeter.h +++ b/libevmasm/GasMeter.h @@ -47,7 +47,7 @@ namespace GasCosts static unsigned const extCodeGas = 700; static unsigned const balanceGas = 400; static unsigned const expGas = 10; - static unsigned const expByteGas = 10; + static unsigned const expByteGas = 50; static unsigned const sha3Gas = 30; static unsigned const sha3WordGas = 6; static unsigned const sloadGas = 50; |