miner, tests: fixed block test

This commit is contained in:
obscuren
2015-05-09 12:51:40 +02:00
parent e3a08875f6
commit 7eed47fad5
2 changed files with 6 additions and 1 deletions

View File

@ -38,6 +38,11 @@ func (self *Miner) Mining() bool {
}
func (m *Miner) SetGasPrice(price *big.Int) {
// FIXME block tests set a nil gas price. Quick dirty fix
if price == nil {
return
}
m.worker.gasPrice = price
}