ethminer => miner

This commit is contained in:
obscuren
2014-10-31 14:56:42 +01:00
parent 4914a78c8c
commit 5af4ff985d
3 changed files with 231 additions and 14 deletions

View File

@ -33,9 +33,9 @@ import (
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/chain"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethminer"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/miner"
"github.com/ethereum/go-ethereum/wire"
"github.com/ethereum/go-ethereum/xeth"
"gopkg.in/qml.v1"
@ -92,7 +92,7 @@ type Gui struct {
plugins map[string]plugin
miner *ethminer.Miner
miner *miner.Miner
stdLog logger.LogSystem
}
@ -410,7 +410,7 @@ func (gui *Gui) update() {
chain.NewBlockEvent{},
chain.TxPreEvent{},
chain.TxPostEvent{},
ethminer.Event{},
miner.Event{},
)
// nameReg := gui.pipe.World().Config().Get("NameReg")
@ -469,8 +469,8 @@ func (gui *Gui) update() {
case eth.PeerListEvent:
gui.setPeerInfo()
case ethminer.Event:
if ev.Type == ethminer.Started {
case miner.Event:
if ev.Type == miner.Started {
gui.miner = ev.Miner
} else {
gui.miner = nil