aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-16 16:40:21 +0800
committerobscuren <geffobscura@gmail.com>2014-06-16 16:40:21 +0800
commit1d76e433f7866763674e4ef06a4a4d9463276490 (patch)
treebff548c1d904186140d6510ed23d3a8579ac709d /ethchain
parent02d8ad030fd1293a03cf905d50533678aaea40fd (diff)
downloaddexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.gz
dexon-1d76e433f7866763674e4ef06a4a4d9463276490.tar.zst
dexon-1d76e433f7866763674e4ef06a4a4d9463276490.zip
Removed some comments
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/state_transition.go3
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.