diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-24 00:19:51 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-24 00:19:51 +0800 |
commit | 46a496428f2d2a3a0f9ddcb755c825dfc1f73436 (patch) | |
tree | 231b6a1931bbe0685d03269769f4df0d396054f4 | |
parent | bc1a173d2f5e44916b9c6a2ae746c43ce1cef6f7 (diff) | |
download | dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.tar.gz dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.tar.zst dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.zip |
ugh
-rw-r--r-- | ethchain/transaction_pool.go | 2 | ||||
-rw-r--r-- | peer.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go index 0f7e85982..da6c3d6ba 100644 --- a/ethchain/transaction_pool.go +++ b/ethchain/transaction_pool.go @@ -105,7 +105,7 @@ func (pool *TxPool) ValidateTransaction(tx *Transaction) error { return fmt.Errorf("[TXPL] Invalid recipient. len = %d", len(tx.Recipient)) } - if tx.GasPrice.Cmp(MinGasPrice) >= 0 { + if tx.GasPrice.Cmp(MinGasPrice) < 0 { return fmt.Errorf("Gas price to low. Require %v > Got %v", MinGasPrice, tx.GasPrice) } @@ -572,7 +572,7 @@ func (self *Peer) FetchBlocks() { func (self *Peer) FetchHashes() { blockPool := self.ethereum.blockPool - if self.statusKnown && self.td.Cmp(blockPool.td) >= 0 { + if self.td.Cmp(blockPool.td) >= 0 { blockPool.td = self.td if !blockPool.HasLatestHash() { |