diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-16 16:40:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-16 16:40:21 +0800 |
commit | 1d76e433f7866763674e4ef06a4a4d9463276490 (patch) | |
tree | bff548c1d904186140d6510ed23d3a8579ac709d | |
parent | 02d8ad030fd1293a03cf905d50533678aaea40fd (diff) | |
download | dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.gz dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.bz2 dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.lz dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.xz dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.zst dexon-1d76e433f7866763674e4ef06a4a4d9463276490.zip |
Removed some comments
-rw-r--r-- | ethchain/state_transition.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ethchain/state_transition.go b/ethchain/state_transition.go index 2e2a51f72..94546e556 100644 --- a/ethchain/state_transition.go +++ b/ethchain/state_transition.go @@ -102,7 +102,7 @@ func (self *StateTransition) BuyGas() error { if err != nil { return err } - self.state.UpdateStateObject(coinbase) + //self.state.UpdateStateObject(coinbase) self.AddGas(self.tx.Gas) sender.SubAmount(self.tx.GasValue()) @@ -177,7 +177,6 @@ func (self *StateTransition) TransitionState() (err error) { // Process the init code and create 'valid' contract if tx.CreatesContract() { - //fmt.Println(Disassemble(receiver.Init())) // Evaluate the initialization script // and use the return value as the // script section for the state object. |