diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-21 21:52:42 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-21 21:52:42 +0800 |
commit | a7ad9c309bf72a9f2b4f12001034e1842ca55319 (patch) | |
tree | fa573f69742e3e7cf9b2a8d124a27c9d4c8d3c2b /cmd | |
parent | ce862ee7589a0780cebc8a7bb1cf6a75193d55a0 (diff) | |
parent | 38c7c589e4a1b08baaab5b81de6aca7fa853d284 (diff) | |
download | go-tangerine-a7ad9c309bf72a9f2b4f12001034e1842ca55319.tar.gz go-tangerine-a7ad9c309bf72a9f2b4f12001034e1842ca55319.tar.zst go-tangerine-a7ad9c309bf72a9f2b4f12001034e1842ca55319.zip |
Merge branch 'develop' into conversion
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethereum/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index afaf06948..7d5854230 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -251,7 +251,7 @@ func accountList(ctx *cli.Context) { utils.Fatalf("Could not list accounts: %v", err) } for _, acct := range accts { - fmt.Printf("Address: %#x\n", acct) + fmt.Printf("Address: %x\n", acct) } } @@ -278,7 +278,7 @@ func accountCreate(ctx *cli.Context) { if err != nil { utils.Fatalf("Could not create the account: %v", err) } - fmt.Printf("Address: %#x\n", acct.Address) + fmt.Printf("Address: %x\n", acct.Address) } func importchain(ctx *cli.Context) { |