Skip to content

Commit

Permalink
unlocking coinbase without knowing address
Browse files Browse the repository at this point in the history
- accounts: remove Manager.getKey
- cli: for -unlock coinbase, use account manager Coinbase()
  • Loading branch information
zelig committed Mar 26, 2015
1 parent 4ec38e3 commit 11d2ebc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
18 changes: 3 additions & 15 deletions accounts/account_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ import (
"bytes"
"crypto/ecdsa"
crand "crypto/rand"
"os"

"errors"
"os"
"sync"
"time"

Expand Down Expand Up @@ -101,17 +100,6 @@ func (am *Manager) firstAddr() ([]byte, error) {
return addrs[0], nil
}

func (am *Manager) getKey(addr []byte, keyAuth string) (*crypto.Key, error) {
if len(addr) == 0 {
var err error
addr, err = am.firstAddr()
if err != nil {
return nil, err
}
}
return am.keyStore.GetKey(addr, keyAuth)
}

func (am *Manager) DeleteAccount(address []byte, auth string) error {
return am.keyStore.DeleteKey(address, auth)
}
Expand All @@ -130,7 +118,7 @@ func (am *Manager) Sign(a Account, toSign []byte) (signature []byte, err error)
// TimedUnlock unlocks the account with the given address.
// When timeout has passed, the account will be locked again.
func (am *Manager) TimedUnlock(addr []byte, keyAuth string, timeout time.Duration) error {
key, err := am.getKey(addr, keyAuth)
key, err := am.keyStore.GetKey(addr, keyAuth)
if err != nil {
return err
}
Expand All @@ -143,7 +131,7 @@ func (am *Manager) TimedUnlock(addr []byte, keyAuth string, timeout time.Duratio
// stays unlocked until the program exits or until a TimedUnlock
// timeout (started after the call to Unlock) expires.
func (am *Manager) Unlock(addr []byte, keyAuth string) error {
key, err := am.getKey(addr, keyAuth)
key, err := am.keyStore.GetKey(addr, keyAuth)
if err != nil {
return err
}
Expand Down
9 changes: 7 additions & 2 deletions cmd/ethereum/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func unlockAccount(ctx *cli.Context, am *accounts.Manager, account string) (pass
var err error
// Load startup keys. XXX we are going to need a different format
// Attempt to unlock the account
passphrase := getPassPhrase(ctx, "", false)
passphrase = getPassPhrase(ctx, "", false)
err = am.Unlock(common.FromHex(account), passphrase)
if err != nil {
utils.Fatalf("Unlock account failed '%v'", err)
Expand All @@ -310,7 +310,11 @@ func startEth(ctx *cli.Context, eth *eth.Ethereum) {
account := ctx.GlobalString(utils.UnlockedAccountFlag.Name)
if len(account) > 0 {
if account == "coinbase" {
account = ""
accbytes, err := am.Coinbase()
if err != nil {
utils.Fatalf("no coinbase account: %v", err)
}
account = common.ToHex(accbytes)
}
unlockAccount(ctx, am, account)
}
Expand Down Expand Up @@ -420,6 +424,7 @@ func accountExport(ctx *cli.Context) {
}
am := utils.GetAccountManager(ctx)
auth := unlockAccount(ctx, am, account)

err := am.Export(keyfile, common.FromHex(account), auth)
if err != nil {
utils.Fatalf("Account export failed: %v", err)
Expand Down

0 comments on commit 11d2ebc

Please sign in to comment.