aboutsummaryrefslogtreecommitdiffstats
path: root/miner/miner.go
diff options
context:
space:
mode:
Diffstat (limited to 'miner/miner.go')
-rw-r--r--miner/miner.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/miner/miner.go b/miner/miner.go
index 581de9674..23e48db40 100644
--- a/miner/miner.go
+++ b/miner/miner.go
@@ -13,7 +13,6 @@ type Miner struct {
worker *worker
MinAcceptedGasPrice *big.Int
- Extra string
mining bool
eth core.Backend
@@ -58,3 +57,7 @@ func (self *Miner) Stop() {
func (self *Miner) HashRate() int64 {
return self.worker.HashRate()
}
+
+func (self *Miner) SetExtra(extra []byte) {
+ self.worker.extra = extra
+}