aboutsummaryrefslogtreecommitdiffstats
path: root/vm/common.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-03 18:56:43 +0800
committerobscuren <geffobscura@gmail.com>2015-03-03 18:56:43 +0800
commitba0a758d8c7c574047d5d4ece9fde0b42a62fc6f (patch)
treea78c69f4069f80a3835b44f50478b6505362421d /vm/common.go
parent49da6a8d809ecc5f5b1f3c5ccea9ebcd45d4e1c3 (diff)
downloadgo-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.gz
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.bz2
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.lz
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.xz
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.tar.zst
go-tangerine-ba0a758d8c7c574047d5d4ece9fde0b42a62fc6f.zip
Quad mem & log changes
Diffstat (limited to 'vm/common.go')
-rw-r--r--vm/common.go7
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)