2014-05-14 10:41:30 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/eth-go"
|
|
|
|
"github.com/ethereum/eth-go/ethminer"
|
2014-05-14 11:32:49 +00:00
|
|
|
"github.com/ethereum/eth-go/ethpub"
|
|
|
|
"github.com/ethereum/eth-go/ethrpc"
|
2014-05-14 10:41:30 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-05-14 11:26:15 +00:00
|
|
|
"time"
|
2014-05-14 10:41:30 +00:00
|
|
|
)
|
|
|
|
|
2014-05-14 11:32:49 +00:00
|
|
|
func DoRpc(ethereum *eth.Ethereum, RpcPort int) {
|
|
|
|
var err error
|
|
|
|
ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum), RpcPort)
|
|
|
|
if err != nil {
|
2014-05-19 10:14:47 +00:00
|
|
|
ethutil.Config.Log.Infoln("Could not start RPC interface:", err)
|
2014-05-14 11:32:49 +00:00
|
|
|
} else {
|
|
|
|
go ethereum.RpcServer.Start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-14 10:41:30 +00:00
|
|
|
func DoMining(ethereum *eth.Ethereum) {
|
|
|
|
// Set Mining status
|
|
|
|
ethereum.Mining = true
|
|
|
|
|
2014-05-14 12:04:43 +00:00
|
|
|
if ethutil.GetKeyRing().Len() == 0 {
|
2014-05-19 10:14:47 +00:00
|
|
|
ethutil.Config.Log.Infoln("No address found, can't start mining")
|
2014-05-14 11:55:55 +00:00
|
|
|
return
|
|
|
|
}
|
2014-05-14 12:04:43 +00:00
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
|
|
|
addr := keyPair.Address()
|
2014-05-14 11:55:55 +00:00
|
|
|
|
2014-05-14 10:41:30 +00:00
|
|
|
go func() {
|
2014-05-14 11:26:15 +00:00
|
|
|
// Give it some time to connect with peers
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
2014-05-17 13:15:46 +00:00
|
|
|
/*
|
|
|
|
for ethereum.IsUpToDate() == false {
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
|
|
|
*/
|
2014-05-19 10:14:47 +00:00
|
|
|
ethutil.Config.Log.Infoln("Miner started")
|
2014-05-14 11:26:15 +00:00
|
|
|
|
2014-05-14 11:55:08 +00:00
|
|
|
miner := ethminer.NewDefaultMiner(addr, ethereum)
|
2014-05-14 10:41:30 +00:00
|
|
|
miner.Start()
|
|
|
|
}()
|
|
|
|
}
|