diff options
author | Felix Lange <fjl@twurst.com> | 2016-03-16 02:39:36 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-03-16 02:39:36 +0800 |
commit | 06fe6310a3ecf0be324b082ca83c015abe47fa8f (patch) | |
tree | a78847bed59a5fa7f75ff9a1705b0a6bb20d13d7 /core/tx_pool.go | |
parent | 066d30152088188cec782bb62844550332d6b142 (diff) | |
parent | b7bb2d8589ddfb4f893c881edb6422bacdb6e53b (diff) | |
download | dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar.gz dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar.bz2 dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar.lz dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar.xz dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.tar.zst dexon-06fe6310a3ecf0be324b082ca83c015abe47fa8f.zip |
Merge pull request #2351 from leijurv/patch-4
core: various typos
Diffstat (limited to 'core/tx_pool.go')
-rw-r--r-- | core/tx_pool.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/tx_pool.go b/core/tx_pool.go index b8fb4cd35..f4e964bf7 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -60,8 +60,8 @@ type stateFn func() (*state.StateDB, error) // current state) and future transactions. Transactions move between those // two states over time as they are received and processed. type TxPool struct { - quit chan bool // Quiting channel - currentState stateFn // The state function which will allow us to do some pre checkes + quit chan bool // Quitting channel + currentState stateFn // The state function which will allow us to do some pre checks pendingState *state.ManagedState gasLimit func() *big.Int // The current gas limit function callback minGasPrice *big.Int @@ -357,7 +357,7 @@ func (self *TxPool) AddTransactions(txs []*types.Transaction) { } } - // check and validate the queueue + // check and validate the queue self.checkQueue() } |