aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-17 00:20:38 +0800
committerobscuren <geffobscura@gmail.com>2014-06-17 00:20:38 +0800
commit887debb0559b283962530bb42998a67dd1b69347 (patch)
tree42d2f2936f17a2f552bb8f55fcc1aacaf9a32d3e /ethchain
parent0d7763283952a57e5421565cdda19ecabe3222f7 (diff)
downloadgo-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar.gz
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar.bz2
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar.lz
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar.xz
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.tar.zst
go-tangerine-887debb0559b283962530bb42998a67dd1b69347.zip
comment
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/state_object.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go
index 2c9dfb713..1445bcd82 100644
--- a/ethchain/state_object.go
+++ b/ethchain/state_object.go
@@ -147,7 +147,7 @@ func (c *StateObject) ConvertGas(gas, price *big.Int) error {
func (self *StateObject) SetGasPool(gasLimit *big.Int) {
self.gasPool = new(big.Int).Set(gasLimit)
- ethutil.Config.Log.Printf(ethutil.LogLevelSystem, "%x fuel (+ %v)", self.Address(), self.gasPool)
+ ethutil.Config.Log.Printf(ethutil.LogLevelSystem, "%x: fuel (+ %v)", self.Address(), self.gasPool)
}
func (self *StateObject) BuyGas(gas, price *big.Int) error {