aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/transaction_pool.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-13 18:45:11 +0800
committerobscuren <geffobscura@gmail.com>2014-06-13 18:45:11 +0800
commitd078e9b8c92fb3bd5789a8e39c169b19864e0a04 (patch)
tree34ce9defddbd84364e681362eef072fa5e5dab97 /ethchain/transaction_pool.go
parentb855e5f7df194c84651d7cc7ee32d307a2fa0a2e (diff)
downloadgo-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar.gz
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar.bz2
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar.lz
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar.xz
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.tar.zst
go-tangerine-d078e9b8c92fb3bd5789a8e39c169b19864e0a04.zip
Refactoring state transitioning
Diffstat (limited to 'ethchain/transaction_pool.go')
-rw-r--r--ethchain/transaction_pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go
index 52c850ba3..6538b0029 100644
--- a/ethchain/transaction_pool.go
+++ b/ethchain/transaction_pool.go
@@ -220,7 +220,7 @@ out:
// Call blocking version.
pool.addTransaction(tx)
- ethutil.Config.Log.Debugf("%x => %x (%v) %x\n", tx.Sender()[:4], tx.Recipient[:4], tx.Value, tx.Hash())
+ ethutil.Config.Log.Debugf("(t) %x => %x (%v) %x\n", tx.Sender()[:4], tx.Recipient[:4], tx.Value, tx.Hash())
// Notify the subscribers
pool.Ethereum.Reactor().Post("newTx:pre", tx)