diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-02-25 03:02:09 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-04-25 22:47:43 +0800 |
commit | 5176784b18fda79e0634af4f817bedca80048eaf (patch) | |
tree | f144202b2eabed550814c39c5ad15c46cc08a9b4 | |
parent | ed5b63f553681d66cbb18a2200f0e4f0acd10de3 (diff) | |
download | dexon-solidity-5176784b18fda79e0634af4f817bedca80048eaf.tar.gz dexon-solidity-5176784b18fda79e0634af4f817bedca80048eaf.tar.zst dexon-solidity-5176784b18fda79e0634af4f817bedca80048eaf.zip |
libevmasm: fix sloadGas in another file
-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 6ee8ea74..3169ff2a 100644 --- a/libevmasm/GasMeter.h +++ b/libevmasm/GasMeter.h @@ -50,7 +50,7 @@ namespace GasCosts static unsigned const expByteGas = 50; static unsigned const sha3Gas = 30; static unsigned const sha3WordGas = 6; - static unsigned const sloadGas = 50; + static unsigned const sloadGas = 200; static unsigned const sstoreSetGas = 20000; static unsigned const sstoreResetGas = 5000; static unsigned const sstoreRefundGas = 15000; |