diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-05 00:09:47 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-05 00:09:47 +0800 |
commit | 085f604b27c8b3fbd82f2aa9d02a4251df0d5db5 (patch) | |
tree | 2d078c12dbe16380d66bb8f90eacf64e2062b178 /cmd | |
parent | a5b27bbc10d6a145152fc2629043c46ef4a9ca71 (diff) | |
download | go-tangerine-085f604b27c8b3fbd82f2aa9d02a4251df0d5db5.tar.gz go-tangerine-085f604b27c8b3fbd82f2aa9d02a4251df0d5db5.tar.zst go-tangerine-085f604b27c8b3fbd82f2aa9d02a4251df0d5db5.zip |
Show newly created private key during startup. Closes #126
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/assets/qml/views/wallet.qml | 4 | ||||
-rw-r--r-- | cmd/utils/cmd.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cmd/mist/assets/qml/views/wallet.qml b/cmd/mist/assets/qml/views/wallet.qml index ad7a11047..9727ef35c 100644 --- a/cmd/mist/assets/qml/views/wallet.qml +++ b/cmd/mist/assets/qml/views/wallet.qml @@ -148,8 +148,8 @@ Rectangle { id: txTableView anchors.fill : parent TableViewColumn{ role: "num" ; title: "#" ; width: 30 } - TableViewColumn{ role: "from" ; title: "From" ; width: 280 } - TableViewColumn{ role: "to" ; title: "To" ; width: 280 } + TableViewColumn{ role: "from" ; title: "From" ; width: 340 } + TableViewColumn{ role: "to" ; title: "To" ; width: 340 } TableViewColumn{ role: "value" ; title: "Amount" ; width: 100 } model: ListModel { diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index d9b26c701..db7bcd35e 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -145,7 +145,6 @@ func NewDatabase() ethutil.Database { } func NewClientIdentity(clientIdentifier, version, customIdentifier string) *wire.SimpleClientIdentity { - clilogger.Infoln("identity created") return wire.NewSimpleClientIdentity(clientIdentifier, version, customIdentifier) } @@ -240,6 +239,7 @@ func KeyTasks(keyManager *crypto.KeyManager, KeyRing string, GenAddr bool, Secre exit(err) } } + clilogger.Infof("Main address %x\n", keyManager.Address()) } func StartRpc(ethereum *eth.Ethereum, RpcPort int) { |