fix delay in miner

This commit is contained in:
whyrusleeping 2019-08-29 23:27:02 -07:00
parent b69557251c
commit 94cdb231eb

View File

@ -37,7 +37,7 @@ type api struct {
func NewMiner(api api) *Miner {
return &Miner{
api: api,
Delay: build.BlockDelay,
Delay: build.BlockDelay * time.Second,
}
}