Mine without txs

This commit is contained in:
obscuren 2014-09-24 19:54:37 +02:00
parent 84690bfbbe
commit 60a8c9527c

View File

@ -3,7 +3,6 @@ package ethminer
import ( import (
"bytes" "bytes"
"sort" "sort"
"time"
"github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethlog" "github.com/ethereum/eth-go/ethlog"
@ -136,12 +135,6 @@ func (miner *Miner) listener() {
} }
} }
default: default:
// This hack is only temporarily
if len(miner.txs) == 0 {
time.Sleep(2 * time.Second)
continue
}
miner.mineNewBlock() miner.mineNewBlock()
} }
} }