aboutsummaryrefslogtreecommitdiffstats
path: root/core/transaction_pool.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-04 23:44:43 +0800
committerobscuren <geffobscura@gmail.com>2014-12-04 23:44:43 +0800
commita5b27bbc10d6a145152fc2629043c46ef4a9ca71 (patch)
tree9752704f0f3f310f382d75438d2c71ff73fbe16c /core/transaction_pool.go
parent8c7e4b290fbdfe2c0da451aef03b94bec3c95e4c (diff)
downloadgo-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.gz
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.bz2
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.lz
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.xz
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.zst
go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.zip
Improved and simplified wallet functions and behaviour
Diffstat (limited to 'core/transaction_pool.go')
-rw-r--r--core/transaction_pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/transaction_pool.go b/core/transaction_pool.go
index abacb14f1..c48d3d8a4 100644
--- a/core/transaction_pool.go
+++ b/core/transaction_pool.go
@@ -164,7 +164,7 @@ func (self *TxPool) Add(tx *types.Transaction) error {
txplogger.Debugf("(t) %x => %x (%v) %x\n", tx.Sender()[:4], tmp, tx.Value, tx.Hash())
// Notify the subscribers
- self.Ethereum.EventMux().Post(TxPreEvent{tx})
+ go self.Ethereum.EventMux().Post(TxPreEvent{tx})
return nil
}