aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/transaction_pool.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-08 06:48:59 +0800
committerobscuren <geffobscura@gmail.com>2014-09-08 06:48:59 +0800
commit0b6b6b52fe1518efef4bcfe9e224cf9209dd8e56 (patch)
tree99a92651cee13d2e706bc87565b464dba8cd6551 /ethchain/transaction_pool.go
parent250d40bca01ae92ef5db6258b519e5903929f764 (diff)
downloadgo-tangerine-0b6b6b52fe1518efef4bcfe9e224cf9209dd8e56.tar.gz
go-tangerine-0b6b6b52fe1518efef4bcfe9e224cf9209dd8e56.tar.zst
go-tangerine-0b6b6b52fe1518efef4bcfe9e224cf9209dd8e56.zip
Contract creation address are empty again
Diffstat (limited to 'ethchain/transaction_pool.go')
-rw-r--r--ethchain/transaction_pool.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go
index b0d62fd91..bd8b27a6d 100644
--- a/ethchain/transaction_pool.go
+++ b/ethchain/transaction_pool.go
@@ -72,8 +72,6 @@ type TxPool struct {
func NewTxPool(ethereum EthManager) *TxPool {
return &TxPool{
- //server: s,
- mutex: sync.Mutex{},
pool: list.New(),
queueChan: make(chan *Transaction, txPoolQueueSize),
quit: make(chan bool),