%#x => %x

This commit is contained in:
obscuren
2015-03-20 12:52:03 +01:00
parent 91f9f355b2
commit 4f5b362bda
3 changed files with 4 additions and 4 deletions

View File

@@ -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)
}
}