diff options
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) |