aboutsummaryrefslogtreecommitdiffstats
path: root/miner/miner.go
diff options
context:
space:
mode:
Diffstat (limited to 'miner/miner.go')
-rw-r--r--miner/miner.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 76dbb8380..c85a1cd8e 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -50,8 +50,6 @@ type Miner struct {
worker *worker
- MinAcceptedGasPrice *big.Int
-
threads int
coinbase common.Address
mining int32
@@ -107,12 +105,15 @@ out:
}
}
+func (m *Miner) GasPrice() *big.Int {
+ return new(big.Int).Set(m.worker.gasPrice)
+}
+
func (m *Miner) SetGasPrice(price *big.Int) {
// FIXME block tests set a nil gas price. Quick dirty fix
if price == nil {
return
}
-
m.worker.setGasPrice(price)
}