aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-20 19:52:03 +0800
committerobscuren <geffobscura@gmail.com>2015-03-20 19:52:03 +0800
commit4f5b362bda862b0d77583491d5e04193148a9349 (patch)
treefc00b04aaaebb3dae1e87a1870463e2c8016dcdb /cmd
parent91f9f355b2e334214e38e1827c624cdcc23c5130 (diff)
downloadgo-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar.gz
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar.bz2
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar.lz
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar.xz
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.tar.zst
go-tangerine-4f5b362bda862b0d77583491d5e04193148a9349.zip
%#x => %x
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index 1a662c756..87f588de8 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)
}
}