diff options
author | Maran <maran.hidskes@gmail.com> | 2014-03-17 17:41:05 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-03-17 17:41:05 +0800 |
commit | 095d5baaed03f1077f39a468c11fb3aae1446a58 (patch) | |
tree | 2a44fdecf8ddaf71c7e686962ec55363bc7b403c /ethchain/transaction_pool.go | |
parent | 8ea7e21f64842380833cce7aafa52b909cb8426b (diff) | |
parent | b15a4985e89b1fbf67731bde2e4cef45b3fdf347 (diff) | |
download | go-tangerine-095d5baaed03f1077f39a468c11fb3aae1446a58.tar.gz go-tangerine-095d5baaed03f1077f39a468c11fb3aae1446a58.tar.zst go-tangerine-095d5baaed03f1077f39a468c11fb3aae1446a58.zip |
Merge conflicts
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 b8366d274..b0df1b6c0 100644 --- a/ethchain/transaction_pool.go +++ b/ethchain/transaction_pool.go @@ -235,11 +235,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) { |