From 91f9f355b2e334214e38e1827c624cdcc23c5130 Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 20 Mar 2015 12:17:57 +0100 Subject: test --- cmd/ethereum/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index 38c04ec9d..1a662c756 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -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) { -- cgit v1.2.3 From 4f5b362bda862b0d77583491d5e04193148a9349 Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 20 Mar 2015 12:52:03 +0100 Subject: %#x => %x --- cmd/ethereum/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') 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) } } -- cgit v1.2.3