From c0ae5c58a6b3d78540ec19b24bd31b6e14e24191 Mon Sep 17 00:00:00 2001 From: Maran Date: Tue, 15 Jul 2014 12:52:30 +0200 Subject: Rewrote mnemonic word loading to facilitate deployable builds. --- utils/cmd.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'utils') diff --git a/utils/cmd.go b/utils/cmd.go index 889726b04..fac164b47 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -1,6 +1,7 @@ package utils import ( + "bitbucket.org/kardianos/osext" "fmt" "github.com/ethereum/eth-go" "github.com/ethereum/eth-go/ethcrypto" @@ -16,6 +17,8 @@ import ( "os" "os/signal" "path" + "path/filepath" + "runtime" "time" ) @@ -164,7 +167,33 @@ func NewKeyManager(KeyStore string, Datadir string, db ethutil.Database) *ethcry return keyManager } +func DefaultAssetPath() string { + var assetPath string + // If the current working directory is the go-ethereum dir + // assume a debug build and use the source directory as + // asset directory. + pwd, _ := os.Getwd() + if pwd == path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "ethereal") { + assetPath = path.Join(pwd, "assets") + } else { + switch runtime.GOOS { + case "darwin": + // Get Binary Directory + exedir, _ := osext.ExecutableFolder() + assetPath = filepath.Join(exedir, "../Resources") + case "linux": + assetPath = "/usr/share/ethereal" + case "windows": + assetPath = "./assets" + default: + assetPath = "." + } + } + return assetPath +} func KeyTasks(keyManager *ethcrypto.KeyManager, KeyRing string, GenAddr bool, SecretFile string, ExportDir string, NonInteractive bool) { + ethcrypto.InitWords(DefaultAssetPath()) // Init mnemonic word list + var err error switch { case GenAddr: -- cgit v1.2.3 From 223432fa1eedb9fa5c712056afb804322aa12b02 Mon Sep 17 00:00:00 2001 From: Maran Date: Tue, 15 Jul 2014 16:21:16 +0200 Subject: Work around crash issues when building OSX binary --- utils/cmd.go | 1 + 1 file changed, 1 insertion(+) (limited to 'utils') diff --git a/utils/cmd.go b/utils/cmd.go index fac164b47..1e1599582 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -191,6 +191,7 @@ func DefaultAssetPath() string { } return assetPath } + func KeyTasks(keyManager *ethcrypto.KeyManager, KeyRing string, GenAddr bool, SecretFile string, ExportDir string, NonInteractive bool) { ethcrypto.InitWords(DefaultAssetPath()) // Init mnemonic word list -- cgit v1.2.3 From 2b9f16802d22b8d743797aecc9bd040a38d6f1f4 Mon Sep 17 00:00:00 2001 From: Maran Date: Fri, 18 Jul 2014 12:01:26 +0200 Subject: WIP to expose hashrate to gui --- utils/cmd.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils') diff --git a/utils/cmd.go b/utils/cmd.go index 1e1599582..638114bbe 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -236,6 +236,10 @@ func StartRpc(ethereum *eth.Ethereum, RpcPort int) { var miner ethminer.Miner +func GetMiner() *ethminer.Miner { + return &miner +} + func StartMining(ethereum *eth.Ethereum) bool { if !ethereum.Mining { ethereum.Mining = true -- cgit v1.2.3 From f702e27485981562ed7b88ecd3f8485af4c61b62 Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 18 Jul 2014 13:49:52 +0200 Subject: Fixed miner stopping / starting:wq --- utils/cmd.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/cmd.go b/utils/cmd.go index f4d613c29..5d0b3463c 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -247,7 +247,10 @@ func StartMining(ethereum *eth.Ethereum) bool { addr := ethereum.KeyManager().Address() go func() { - miner = ethminer.NewDefaultMiner(addr, ethereum) + if miner == nil { + miner = ethminer.NewDefaultMiner(addr, ethereum) + } + // Give it some time to connect with peers time.Sleep(3 * time.Second) for !ethereum.IsUpToDate() { @@ -255,7 +258,6 @@ func StartMining(ethereum *eth.Ethereum) bool { } logger.Infoln("Miner started") - miner := ethminer.NewDefaultMiner(addr, ethereum) miner.Start() }() RegisterInterrupt(func(os.Signal) { @@ -269,10 +271,14 @@ func StartMining(ethereum *eth.Ethereum) bool { func StopMining(ethereum *eth.Ethereum) bool { if ethereum.Mining && miner != nil { miner.Stop() + logger.Infoln("Miner stopped") + ethereum.Mining = false + return true } + return false } -- cgit v1.2.3