diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-22 23:35:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-22 23:35:26 +0800 |
commit | 230aafbf66ba747fb3796810adf3b1680f368e73 (patch) | |
tree | 66aff77b70bf083cc1a7ce32ab108d39d82ac95d /ethchain/vm.go | |
parent | 14787ac148274a84478aa06fd985407b9241cd50 (diff) | |
download | go-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.go | 1 |
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 { |