diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-17 17:33:03 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-17 17:33:03 +0800 |
commit | b15a4985e89b1fbf67731bde2e4cef45b3fdf347 (patch) | |
tree | 71648b6ac08014fe83baf38c9559aff531065c87 /ethchain/transaction_pool.go | |
parent | 54bcee512d6be40691a579dba8de29193cf09ddd (diff) | |
download | dexon-b15a4985e89b1fbf67731bde2e4cef45b3fdf347.tar.gz dexon-b15a4985e89b1fbf67731bde2e4cef45b3fdf347.tar.zst dexon-b15a4985e89b1fbf67731bde2e4cef45b3fdf347.zip |
Moved on to the state manager
Diffstat (limited to 'ethchain/transaction_pool.go')
-rw-r--r-- | ethchain/transaction_pool.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go index 2c9a26936..fdc386303 100644 --- a/ethchain/transaction_pool.go +++ b/ethchain/transaction_pool.go @@ -233,11 +233,11 @@ func (pool *TxPool) Start() { } func (pool *TxPool) Stop() { - log.Println("[TXP] Stopping...") - close(pool.quit) pool.Flush() + + log.Println("[TXP] Stopped") } func (pool *TxPool) Subscribe(channel chan TxMsg) { |