diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-04 23:44:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-04 23:44:43 +0800 |
commit | a5b27bbc10d6a145152fc2629043c46ef4a9ca71 (patch) | |
tree | 9752704f0f3f310f382d75438d2c71ff73fbe16c /core/transaction_pool.go | |
parent | 8c7e4b290fbdfe2c0da451aef03b94bec3c95e4c (diff) | |
download | go-tangerine-a5b27bbc10d6a145152fc2629043c46ef4a9ca71.tar.gz 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.go | 2 |
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 } |