diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-03 18:56:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-03 18:56:43 +0800 |
commit | ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f (patch) | |
tree | a78c69f4069f80a3835b44f50478b6505362421d /vm/common.go | |
parent | 49da6a8d809ecc5f5b1f3c5ccea9ebcd45d4e1c3 (diff) | |
download | dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.gz dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.bz2 dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.lz dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.xz dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.zst dexon-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.zip |
Quad mem & log changes
Diffstat (limited to 'vm/common.go')
-rw-r--r-- | vm/common.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vm/common.go b/vm/common.go index 1202966fd..af458e599 100644 --- a/vm/common.go +++ b/vm/common.go @@ -41,13 +41,14 @@ var ( GasStorageGet = big.NewInt(50) GasStorageAdd = big.NewInt(20000) GasStorageMod = big.NewInt(5000) - GasLogBase = big.NewInt(2000) - GasLogTopic = big.NewInt(2000) + GasLogBase = big.NewInt(375) + GasLogTopic = big.NewInt(375) GasLogByte = big.NewInt(8) GasCreate = big.NewInt(32000) GasCreateByte = big.NewInt(300) GasCall = big.NewInt(40) - GasCallValueTransfer = big.NewInt(6700) + GasCallValueTransfer = big.NewInt(9000) + GasStipend = big.NewInt(2300) GasCallNewAccount = big.NewInt(25000) GasReturn = big.NewInt(0) GasStop = big.NewInt(0) |