aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 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) {