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 /ethchain/transaction_pool.go | |
parent | bc1a173d2f5e44916b9c6a2ae746c43ce1cef6f7 (diff) | |
download | dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.tar.gz dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.tar.zst dexon-46a496428f2d2a3a0f9ddcb755c825dfc1f73436.zip |
ugh
Diffstat (limited to 'ethchain/transaction_pool.go')
-rw-r--r-- | ethchain/transaction_pool.go | 2 |
1 files changed, 1 insertions, 1 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) } |