aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/vm.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-22 23:35:26 +0800
committerobscuren <geffobscura@gmail.com>2014-05-22 23:35:26 +0800
commit230aafbf66ba747fb3796810adf3b1680f368e73 (patch)
tree66aff77b70bf083cc1a7ce32ab108d39d82ac95d /ethchain/vm.go
parent14787ac148274a84478aa06fd985407b9241cd50 (diff)
downloadgo-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.gz
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.bz2
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.lz
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.xz
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.tar.zst
go-tangerine-230aafbf66ba747fb3796810adf3b1680f368e73.zip
Working on interop
* Receipts after each transaction * Fee structure * Applying fees to miners
Diffstat (limited to 'ethchain/vm.go')
-rw-r--r--ethchain/vm.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ethchain/vm.go b/ethchain/vm.go
index d8254998e..e067a9c96 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -18,6 +18,7 @@ var (
GasCreate = big.NewInt(100)
GasCall = big.NewInt(20)
GasMemory = big.NewInt(1)
+ GasTx = big.NewInt(500)
)
func CalculateTxGas(initSize, scriptSize *big.Int) *big.Int {