diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-27 22:42:39 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-27 22:42:39 +0800 |
commit | 43cad6901620ca077e43f195cc5ae4d1c8edb2d0 (patch) | |
tree | 0976ea78d90ae84b179097b90efeaf87ab74e994 /ethchain/vm.go | |
parent | 308c59320c25845f9668e76559b581e2161fec15 (diff) | |
download | go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar.gz go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar.bz2 go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar.lz go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar.xz go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.tar.zst go-tangerine-43cad6901620ca077e43f195cc5ae4d1c8edb2d0.zip |
Reworked transaction constructors
Diffstat (limited to 'ethchain/vm.go')
-rw-r--r-- | ethchain/vm.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ethchain/vm.go b/ethchain/vm.go index 9b6807925..aefc8ff0c 100644 --- a/ethchain/vm.go +++ b/ethchain/vm.go @@ -5,7 +5,6 @@ import ( _ "fmt" "github.com/ethereum/eth-go/ethutil" _ "github.com/obscuren/secp256k1-go" - "log" _ "math" "math/big" ) @@ -359,6 +358,7 @@ func (vm *Vm) RunClosure(closure *Closure) []byte { } } +/* func makeInlineTx(addr []byte, value, from, length *big.Int, contract *Contract, state *State) { ethutil.Config.Log.Debugf(" => creating inline tx %x %v %v %v", addr, value, from, length) j := int64(0) @@ -395,3 +395,4 @@ func contractMemory(state *State, contractAddr []byte, memAddr *big.Int) *big.In return decoder.BigInt() } +*/ |