aboutsummaryrefslogtreecommitdiffstats
path: root/miner/miner.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-06-15 17:33:08 +0800
committerobscuren <geffobscura@gmail.com>2015-06-15 17:33:08 +0800
commit6d817e16c1c17f7cad4a34fa91457e21f63f2de4 (patch)
treefad58ed95ee70bcee2766347148eb25b27382122 /miner/miner.go
parent6f5c6150b7060b6b2ee68ac95b30f46c5c2c7f90 (diff)
downloaddexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar.gz
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar.bz2
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar.lz
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar.xz
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.tar.zst
dexon-6d817e16c1c17f7cad4a34fa91457e21f63f2de4.zip
core, miner: tx pool drops txs below ask price
Diffstat (limited to 'miner/miner.go')
-rw-r--r--miner/miner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 20ca81648..7f73f3ee8 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -77,7 +77,7 @@ func (m *Miner) SetGasPrice(price *big.Int) {
return
}
- m.worker.gasPrice = price
+ m.worker.setGasPrice(price)
}
func (self *Miner) Start(coinbase common.Address, threads int) {