worker.go 16.8 KB
Newer Older
O
obscuren 已提交
1 2 3 4 5 6
package miner

import (
	"fmt"
	"math/big"
	"sort"
O
obscuren 已提交
7
	"sync"
O
obscuren 已提交
8
	"sync/atomic"
9
	"time"
O
obscuren 已提交
10

11
	"github.com/ethereum/go-ethereum/accounts"
O
obscuren 已提交
12
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
13
	"github.com/ethereum/go-ethereum/core"
O
obscuren 已提交
14
	"github.com/ethereum/go-ethereum/core/state"
O
obscuren 已提交
15 16
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/event"
17
	"github.com/ethereum/go-ethereum/logger"
O
obscuren 已提交
18
	"github.com/ethereum/go-ethereum/logger/glog"
O
obscuren 已提交
19 20 21 22
	"github.com/ethereum/go-ethereum/pow"
	"gopkg.in/fatih/set.v0"
)

23 24
var jsonlogger = logger.NewJsonLogger()

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// Work holds the current work
type Work struct {
	Number    uint64
	Nonce     uint64
	MixDigest []byte
	SeedHash  []byte
}

// Agent can register themself with the worker
type Agent interface {
	Work() chan<- *types.Block
	SetReturnCh(chan<- *types.Block)
	Stop()
	Start()
	GetHashRate() int64
}

42
const miningLogAtDepth = 5
43

J
Jason Carver 已提交
44
type uint64RingBuffer struct {
45 46 47 48
	ints []uint64 //array of all integers in buffer
	next int      //where is the next insertion? assert 0 <= next < len(ints)
}

49 50
// environment is the workers current environment and holds
// all of the current state information
O
obscuren 已提交
51
type environment struct {
52 53
	state              *state.StateDB     // apply state changes here
	coinbase           *state.StateObject // the miner's account
54 55
	ancestors          *set.Set           // ancestor set (used for checking uncle parent validity)
	family             *set.Set           // family set (used for checking uncle invalidity)
56 57 58
	uncles             *set.Set           // uncle set
	remove             *set.Set           // tx which will be removed
	tcount             int                // tx count in cycle
59 60 61 62
	ignoredTransactors *set.Set
	lowGasTransactors  *set.Set
	ownedAccounts      *set.Set
	lowGasTxs          types.Transactions
J
Jason Carver 已提交
63
	localMinedBlocks   *uint64RingBuffer // the most recent block numbers that were mined locally (used to check block inclusion)
O
obscuren 已提交
64

F
Felix Lange 已提交
65
	block *types.Block // the new block
O
obscuren 已提交
66

F
Felix Lange 已提交
67 68 69
	header   *types.Header
	txs      []*types.Transaction
	receipts []*types.Receipt
O
obscuren 已提交
70 71
}

72
// worker is the main object which takes care of applying messages to the new state
O
obscuren 已提交
73
type worker struct {
O
obscuren 已提交
74 75
	mu sync.Mutex

O
obscuren 已提交
76
	agents []Agent
O
obscuren 已提交
77
	recv   chan *types.Block
O
obscuren 已提交
78 79 80 81
	mux    *event.TypeMux
	quit   chan struct{}
	pow    pow.PoW

82 83 84 85
	eth     core.Backend
	chain   *core.ChainManager
	proc    *core.BlockProcessor
	extraDb common.Database
86

O
obscuren 已提交
87
	coinbase common.Address
88
	gasPrice *big.Int
89
	extra    []byte
O
obscuren 已提交
90

O
obscuren 已提交
91 92
	currentMu sync.Mutex
	current   *environment
93

O
obscuren 已提交
94 95 96
	uncleMu        sync.Mutex
	possibleUncles map[common.Hash]*types.Block

O
obscuren 已提交
97 98 99
	txQueueMu sync.Mutex
	txQueue   map[common.Hash]*types.Transaction

F
Felix Lange 已提交
100 101 102
	// atomic status counters
	mining int32
	atWork int32
O
obscuren 已提交
103 104
}

O
obscuren 已提交
105
func newWorker(coinbase common.Address, eth core.Backend) *worker {
O
obscuren 已提交
106
	worker := &worker{
O
obscuren 已提交
107 108
		eth:            eth,
		mux:            eth.EventMux(),
109
		extraDb:        eth.ExtraDb(),
O
obscuren 已提交
110
		recv:           make(chan *types.Block),
111
		gasPrice:       new(big.Int),
O
obscuren 已提交
112 113 114 115
		chain:          eth.ChainManager(),
		proc:           eth.BlockProcessor(),
		possibleUncles: make(map[common.Hash]*types.Block),
		coinbase:       coinbase,
O
obscuren 已提交
116
		txQueue:        make(map[common.Hash]*types.Transaction),
O
obscuren 已提交
117
		quit:           make(chan struct{}),
O
obscuren 已提交
118
	}
O
obscuren 已提交
119 120 121 122 123 124
	go worker.update()
	go worker.wait()

	worker.commitNewWork()

	return worker
O
obscuren 已提交
125 126
}

O
obscuren 已提交
127 128 129 130 131
func (self *worker) pendingState() *state.StateDB {
	self.currentMu.Lock()
	defer self.currentMu.Unlock()
	return self.current.state
}
132

O
obscuren 已提交
133 134 135
func (self *worker) pendingBlock() *types.Block {
	self.currentMu.Lock()
	defer self.currentMu.Unlock()
F
Felix Lange 已提交
136 137 138 139 140 141 142 143
	if atomic.LoadInt32(&self.mining) == 0 {
		return types.NewBlock(
			self.current.header,
			self.current.txs,
			nil,
			self.current.receipts,
		)
	}
O
obscuren 已提交
144 145 146 147
	return self.current.block
}

func (self *worker) start() {
148 149 150
	self.mu.Lock()
	defer self.mu.Unlock()

151 152
	atomic.StoreInt32(&self.mining, 1)

O
obscuren 已提交
153 154 155 156
	// spin up agents
	for _, agent := range self.agents {
		agent.Start()
	}
O
obscuren 已提交
157 158 159
}

func (self *worker) stop() {
160 161 162
	self.mu.Lock()
	defer self.mu.Unlock()

F
Felix Lange 已提交
163
	if atomic.LoadInt32(&self.mining) == 1 {
164
		var keep []Agent
O
obscuren 已提交
165 166 167
		// stop all agents
		for _, agent := range self.agents {
			agent.Stop()
168 169 170 171
			// keep all that's not a cpu agent
			if _, ok := agent.(*CpuAgent); !ok {
				keep = append(keep, agent)
			}
O
obscuren 已提交
172
		}
173
		self.agents = keep
O
obscuren 已提交
174
	}
175

F
Felix Lange 已提交
176 177
	atomic.StoreInt32(&self.mining, 0)
	atomic.StoreInt32(&self.atWork, 0)
O
obscuren 已提交
178 179 180
}

func (self *worker) register(agent Agent) {
181 182
	self.mu.Lock()
	defer self.mu.Unlock()
O
obscuren 已提交
183
	self.agents = append(self.agents, agent)
O
obscuren 已提交
184
	agent.SetReturnCh(self.recv)
O
obscuren 已提交
185 186 187
}

func (self *worker) update() {
O
obscuren 已提交
188
	events := self.mux.Subscribe(core.ChainHeadEvent{}, core.ChainSideEvent{}, core.TxPreEvent{})
O
obscuren 已提交
189 190 191 192 193

out:
	for {
		select {
		case event := <-events.Chan():
194
			switch ev := event.(type) {
195
			case core.ChainHeadEvent:
O
obscuren 已提交
196
				self.commitNewWork()
O
obscuren 已提交
197
			case core.ChainSideEvent:
O
obscuren 已提交
198 199 200
				self.uncleMu.Lock()
				self.possibleUncles[ev.Block.Hash()] = ev.Block
				self.uncleMu.Unlock()
O
obscuren 已提交
201
			case core.TxPreEvent:
202
				// Apply transaction to the pending state if we're not mining
F
Felix Lange 已提交
203
				if atomic.LoadInt32(&self.mining) == 0 {
204
					self.mu.Lock()
F
Felix Lange 已提交
205
					self.current.commitTransactions(types.Transactions{ev.Tx}, self.gasPrice, self.proc)
206
					self.mu.Unlock()
O
obscuren 已提交
207
				}
O
obscuren 已提交
208 209 210 211 212
			}
		case <-self.quit:
			break out
		}
	}
213 214

	events.Unsubscribe()
O
obscuren 已提交
215 216
}

J
Jason Carver 已提交
217
func newLocalMinedBlock(blockNumber uint64, prevMinedBlocks *uint64RingBuffer) (minedBlocks *uint64RingBuffer) {
218
	if prevMinedBlocks == nil {
219
		minedBlocks = &uint64RingBuffer{next: 0, ints: make([]uint64, miningLogAtDepth+1)}
220 221 222 223 224 225 226 227 228
	} else {
		minedBlocks = prevMinedBlocks
	}

	minedBlocks.ints[minedBlocks.next] = blockNumber
	minedBlocks.next = (minedBlocks.next + 1) % len(minedBlocks.ints)
	return minedBlocks
}

O
obscuren 已提交
229 230
func (self *worker) wait() {
	for {
O
obscuren 已提交
231
		for block := range self.recv {
F
Felix Lange 已提交
232
			atomic.AddInt32(&self.atWork, -1)
O
obscuren 已提交
233 234 235 236 237

			if block == nil {
				continue
			}

238 239 240 241 242
			parent := self.chain.GetBlock(block.ParentHash())
			if parent == nil {
				glog.V(logger.Error).Infoln("Invalid block found during mining")
				continue
			}
J
Jeffrey Wilcke 已提交
243
			if err := core.ValidateHeader(self.eth.BlockProcessor().Pow, block.Header(), parent, true); err != nil && err != core.BlockFutureErr {
244 245 246 247 248
				glog.V(logger.Error).Infoln("Invalid header on mined block:", err)
				continue
			}

			stat, err := self.chain.WriteBlock(block, false)
249 250 251 252
			if err != nil {
				glog.V(logger.Error).Infoln("error writing block to chain", err)
				continue
			}
253 254 255 256 257
			// check if canon block and write transactions
			if stat == core.CanonStatTy {
				// This puts transactions in a extra db for rpc
				core.PutTransactions(self.extraDb, block, block.Transactions())
				// store the receipts
258
				core.PutReceipts(self.extraDb, self.current.receipts)
259
			}
O
obscuren 已提交
260

261 262 263 264 265
			// check staleness and display confirmation
			var stale, confirm string
			canonBlock := self.chain.GetBlockByNumber(block.NumberU64())
			if canonBlock != nil && canonBlock.Hash() != block.Hash() {
				stale = "stale "
O
obscuren 已提交
266
			} else {
267 268
				confirm = "Wait 5 blocks for confirmation"
				self.current.localMinedBlocks = newLocalMinedBlock(block.Number().Uint64(), self.current.localMinedBlocks)
269
			}
270 271 272 273

			glog.V(logger.Info).Infof("🔨  Mined %sblock (#%v / %x). %s", stale, block.Number(), block.Hash().Bytes()[:4], confirm)

			// broadcast before waiting for validation
274 275 276 277 278 279 280
			go func(block *types.Block, logs state.Logs) {
				self.mux.Post(core.NewMinedBlockEvent{block})
				self.mux.Post(core.ChainEvent{block, block.Hash(), logs})
				if stat == core.CanonStatTy {
					self.mux.Post(core.ChainHeadEvent{block})
				}
			}(block, self.current.state.Logs())
281 282

			self.commitNewWork()
O
obscuren 已提交
283 284 285 286 287
		}
	}
}

func (self *worker) push() {
F
Felix Lange 已提交
288
	if atomic.LoadInt32(&self.mining) == 1 {
J
Jeffrey Wilcke 已提交
289 290 291 292 293 294
		if core.Canary(self.current.state) {
			glog.Infoln("Toxicity levels rising to deadly levels. Your canary has died. You can go back or continue down the mineshaft --more--")
			glog.Infoln("You turn back and abort mining")
			return
		}

O
obscuren 已提交
295
		// push new work to agents
296
		for _, agent := range self.agents {
F
Felix Lange 已提交
297
			atomic.AddInt32(&self.atWork, 1)
O
obscuren 已提交
298

299
			if agent.Work() != nil {
F
Felix Lange 已提交
300
				agent.Work() <- self.current.block
301
			}
302
		}
O
obscuren 已提交
303 304 305
	}
}

F
Felix Lange 已提交
306 307 308 309 310 311 312 313 314 315
// makeCurrent creates a new environment for the current cycle.
func (self *worker) makeCurrent(parent *types.Block, header *types.Header) {
	state := state.New(parent.Root(), self.eth.StateDb())
	current := &environment{
		state:     state,
		ancestors: set.New(),
		family:    set.New(),
		uncles:    set.New(),
		header:    header,
		coinbase:  state.GetOrNewStateObject(self.coinbase),
316
	}
317

Z
zelig 已提交
318
	// when 08 is processed ancestors contain 07 (quick block)
F
Felix Lange 已提交
319
	for _, ancestor := range self.chain.GetBlocksFromHash(parent.Hash(), 7) {
320 321 322
		for _, uncle := range ancestor.Uncles() {
			current.family.Add(uncle.Hash())
		}
323
		current.family.Add(ancestor.Hash())
V
Vitalik Buterin 已提交
324
		current.ancestors.Add(ancestor.Hash())
O
obscuren 已提交
325
	}
326
	accounts, _ := self.eth.AccountManager().Accounts()
F
Felix Lange 已提交
327

328 329 330 331 332 333
	// Keep track of transactions which return errors so they can be removed
	current.remove = set.New()
	current.tcount = 0
	current.ignoredTransactors = set.New()
	current.lowGasTransactors = set.New()
	current.ownedAccounts = accountAddressesSet(accounts)
334 335 336
	if self.current != nil {
		current.localMinedBlocks = self.current.localMinedBlocks
	}
337
	self.current = current
O
obscuren 已提交
338 339
}

340 341 342
func (w *worker) setGasPrice(p *big.Int) {
	w.mu.Lock()
	defer w.mu.Unlock()
343 344 345 346 347 348

	// calculate the minimal gas price the miner accepts when sorting out transactions.
	const pct = int64(90)
	w.gasPrice = gasprice(p, pct)

	w.mux.Post(core.GasPriceChanged{w.gasPrice})
349 350
}

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
func (self *worker) isBlockLocallyMined(deepBlockNum uint64) bool {
	//Did this instance mine a block at {deepBlockNum} ?
	var isLocal = false
	for idx, blockNum := range self.current.localMinedBlocks.ints {
		if deepBlockNum == blockNum {
			isLocal = true
			self.current.localMinedBlocks.ints[idx] = 0 //prevent showing duplicate logs
			break
		}
	}
	//Short-circuit on false, because the previous and following tests must both be true
	if !isLocal {
		return false
	}

	//Does the block at {deepBlockNum} send earnings to my coinbase?
	var block = self.chain.GetBlockByNumber(deepBlockNum)
F
Felix Lange 已提交
368
	return block != nil && block.Coinbase() == self.coinbase
369 370 371 372
}

func (self *worker) logLocalMinedBlocks(previous *environment) {
	if previous != nil && self.current.localMinedBlocks != nil {
F
Felix Lange 已提交
373 374
		nextBlockNum := self.current.block.NumberU64()
		for checkBlockNum := previous.block.NumberU64(); checkBlockNum < nextBlockNum; checkBlockNum++ {
375
			inspectBlockNum := checkBlockNum - miningLogAtDepth
376
			if self.isBlockLocallyMined(inspectBlockNum) {
377
				glog.V(logger.Info).Infof("🔨 🔗  Mined %d blocks back: block #%v", miningLogAtDepth, inspectBlockNum)
378 379 380 381 382
			}
		}
	}
}

O
obscuren 已提交
383 384 385 386 387 388 389 390
func (self *worker) commitNewWork() {
	self.mu.Lock()
	defer self.mu.Unlock()
	self.uncleMu.Lock()
	defer self.uncleMu.Unlock()
	self.currentMu.Lock()
	defer self.currentMu.Unlock()

391
	tstart := time.Now()
F
Felix Lange 已提交
392 393
	parent := self.chain.CurrentBlock()
	tstamp := tstart.Unix()
394 395
	if tstamp <= int64(parent.Time()) {
		tstamp = int64(parent.Time()) + 1
F
Felix Lange 已提交
396
	}
397 398 399 400 401 402 403
	// this will ensure we're not going off too far in the future
	if now := time.Now().Unix(); tstamp > now+4 {
		wait := time.Duration(tstamp-now) * time.Second
		glog.V(logger.Info).Infoln("We are too far in the future. Waiting for", wait)
		time.Sleep(wait)
	}

F
Felix Lange 已提交
404 405 406 407
	num := parent.Number()
	header := &types.Header{
		ParentHash: parent.Hash(),
		Number:     num.Add(num, common.Big1),
408
		Difficulty: core.CalcDifficulty(int64(tstamp), int64(parent.Time()), parent.Difficulty()),
F
Felix Lange 已提交
409 410 411 412 413 414
		GasLimit:   core.CalcGasLimit(parent),
		GasUsed:    new(big.Int),
		Coinbase:   self.coinbase,
		Extra:      self.extra,
		Time:       uint64(tstamp),
	}
415

416
	previous := self.current
F
Felix Lange 已提交
417
	self.makeCurrent(parent, header)
418
	current := self.current
O
obscuren 已提交
419

F
Felix Lange 已提交
420
	// commit transactions for this run.
O
obscuren 已提交
421 422
	transactions := self.eth.TxPool().GetTransactions()
	sort.Sort(types.TxByNonce{transactions})
F
Felix Lange 已提交
423 424
	current.coinbase.SetGasLimit(header.GasLimit)
	current.commitTransactions(transactions, self.gasPrice, self.proc)
425
	self.eth.TxPool().RemoveTransactions(current.lowGasTxs)
O
obscuren 已提交
426

F
Felix Lange 已提交
427
	// compute uncles for the new block.
O
obscuren 已提交
428 429 430 431
	var (
		uncles    []*types.Header
		badUncles []common.Hash
	)
O
obscuren 已提交
432
	for hash, uncle := range self.possibleUncles {
O
obscuren 已提交
433
		if len(uncles) == 2 {
O
obscuren 已提交
434 435 436
			break
		}
		if err := self.commitUncle(uncle.Header()); err != nil {
437 438 439 440
			if glog.V(logger.Ridiculousness) {
				glog.V(logger.Detail).Infof("Bad uncle found and will be removed (%x)\n", hash[:4])
				glog.V(logger.Detail).Infoln(uncle)
			}
O
obscuren 已提交
441
			badUncles = append(badUncles, hash)
O
obscuren 已提交
442
		} else {
O
obscuren 已提交
443
			glog.V(logger.Debug).Infof("commiting %x as uncle\n", hash[:4])
O
obscuren 已提交
444
			uncles = append(uncles, uncle.Header())
O
obscuren 已提交
445 446
		}
	}
O
obscuren 已提交
447 448 449
	for _, hash := range badUncles {
		delete(self.possibleUncles, hash)
	}
450

451 452 453
	if atomic.LoadInt32(&self.mining) == 1 {
		// commit state root after all state transitions.
		core.AccumulateRewards(self.current.state, header, uncles)
454
		current.state.SyncObjects()
455
		self.current.state.Sync()
456 457
		header.Root = current.state.Root()
	}
O
obscuren 已提交
458

F
Felix Lange 已提交
459 460
	// create the new block whose nonce will be mined.
	current.block = types.NewBlock(header, current.txs, uncles, current.receipts)
461
	self.current.block.Td = new(big.Int).Set(core.CalcTD(self.current.block, self.chain.GetBlock(self.current.block.ParentHash())))
O
obscuren 已提交
462

F
Felix Lange 已提交
463 464 465 466 467
	// We only care about logging if we're actually mining.
	if atomic.LoadInt32(&self.mining) == 1 {
		glog.V(logger.Info).Infof("commit new work on block %v with %d txs & %d uncles. Took %v\n", current.block.Number(), current.tcount, len(uncles), time.Since(tstart))
		self.logLocalMinedBlocks(previous)
	}
O
obscuren 已提交
468

O
obscuren 已提交
469
	self.push()
O
obscuren 已提交
470 471 472
}

func (self *worker) commitUncle(uncle *types.Header) error {
F
Felix Lange 已提交
473 474
	hash := uncle.Hash()
	if self.current.uncles.Has(hash) {
O
obscuren 已提交
475 476
		return core.UncleError("Uncle not unique")
	}
477
	if !self.current.ancestors.Has(uncle.ParentHash) {
O
obscuren 已提交
478 479
		return core.UncleError(fmt.Sprintf("Uncle's parent unknown (%x)", uncle.ParentHash[0:4]))
	}
F
Felix Lange 已提交
480 481
	if self.current.family.Has(hash) {
		return core.UncleError(fmt.Sprintf("Uncle already in family (%x)", hash))
O
obscuren 已提交
482
	}
483
	self.current.uncles.Add(uncle.Hash())
O
obscuren 已提交
484 485 486
	return nil
}

F
Felix Lange 已提交
487
func (env *environment) commitTransactions(transactions types.Transactions, gasPrice *big.Int, proc *core.BlockProcessor) {
488 489 490 491
	for _, tx := range transactions {
		// We can skip err. It has already been validated in the tx pool
		from, _ := tx.From()

492
		// Check if it falls within margin. Txs from owned accounts are always processed.
F
Felix Lange 已提交
493
		if tx.GasPrice().Cmp(gasPrice) < 0 && !env.ownedAccounts.Has(from) {
494 495 496
			// ignore the transaction and transactor. We ignore the transactor
			// because nonce will fail after ignoring this transaction so there's
			// no point
F
Felix Lange 已提交
497
			env.lowGasTransactors.Add(from)
498

F
Felix Lange 已提交
499
			glog.V(logger.Info).Infof("transaction(%x) below gas price (tx=%v ask=%v). All sequential txs from this address(%x) will be ignored\n", tx.Hash().Bytes()[:4], common.CurrencyToString(tx.GasPrice()), common.CurrencyToString(gasPrice), from[:4])
500 501 502 503 504
		}

		// Continue with the next transaction if the transaction sender is included in
		// the low gas tx set. This will also remove the tx and all sequential transaction
		// from this transactor
F
Felix Lange 已提交
505
		if env.lowGasTransactors.Has(from) {
506 507
			// add tx to the low gas set. This will be removed at the end of the run
			// owned accounts are ignored
F
Felix Lange 已提交
508 509
			if !env.ownedAccounts.Has(from) {
				env.lowGasTxs = append(env.lowGasTxs, tx)
510 511 512 513 514 515 516 517 518
			}
			continue
		}

		// Move on to the next transaction when the transactor is in ignored transactions set
		// This may occur when a transaction hits the gas limit. When a gas limit is hit and
		// the transaction is processed (that could potentially be included in the block) it
		// will throw a nonce error because the previous transaction hasn't been processed.
		// Therefor we need to ignore any transaction after the ignored one.
F
Felix Lange 已提交
519
		if env.ignoredTransactors.Has(from) {
520 521 522
			continue
		}

F
Felix Lange 已提交
523
		env.state.StartRecord(tx.Hash(), common.Hash{}, 0)
524

F
Felix Lange 已提交
525
		err := env.commitTransaction(tx, proc)
526 527 528 529
		switch {
		case state.IsGasLimitErr(err):
			// ignore the transactor so no nonce errors will be thrown for this account
			// next time the worker is run, they'll be picked up again.
F
Felix Lange 已提交
530
			env.ignoredTransactors.Add(from)
531 532

			glog.V(logger.Detail).Infof("Gas limit reached for (%x) in this block. Continue to try smaller txs\n", from[:4])
533 534 535 536 537 538
		case err != nil:
			env.remove.Add(tx.Hash())

			if glog.V(logger.Detail) {
				glog.Infof("TX (%x) failed, will be removed: %v\n", tx.Hash().Bytes()[:4], err)
			}
539
		default:
F
Felix Lange 已提交
540
			env.tcount++
541 542 543 544
		}
	}
}

F
Felix Lange 已提交
545 546 547
func (env *environment) commitTransaction(tx *types.Transaction, proc *core.BlockProcessor) error {
	snap := env.state.Copy()
	receipt, _, err := proc.ApplyTransaction(env.coinbase, env.state, env.header, tx, env.header.GasUsed, true)
548
	if err != nil {
F
Felix Lange 已提交
549
		env.state.Set(snap)
O
obscuren 已提交
550 551
		return err
	}
F
Felix Lange 已提交
552 553
	env.txs = append(env.txs, tx)
	env.receipts = append(env.receipts, receipt)
O
obscuren 已提交
554 555
	return nil
}
O
obscuren 已提交
556

557
// TODO: remove or use
O
obscuren 已提交
558
func (self *worker) HashRate() int64 {
559
	return 0
O
obscuren 已提交
560
}
O
obscuren 已提交
561 562 563 564 565 566 567 568 569

// gasprice calculates a reduced gas price based on the pct
// XXX Use big.Rat?
func gasprice(price *big.Int, pct int64) *big.Int {
	p := new(big.Int).Set(price)
	p.Div(p, big.NewInt(100))
	p.Mul(p, big.NewInt(pct))
	return p
}
570 571 572 573

func accountAddressesSet(accounts []accounts.Account) *set.Set {
	accountSet := set.New()
	for _, account := range accounts {
574
		accountSet.Add(account.Address)
575 576 577
	}
	return accountSet
}