diff options
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 c896488d1..83ea82ca7 100644 --- a/core/transaction_pool.go +++ b/core/transaction_pool.go @@ -277,7 +277,7 @@ func (pool *TxPool) Stop() { } func (self *TxPool) queueTx(tx *types.Transaction) { - from, _ := tx.From() + from, _ := tx.From() // already validated self.queue[from] = append(self.queue[from], tx) } |