Merge branch 'develop' into conversion

This commit is contained in:
obscuren
2015-03-21 14:52:42 +01:00
6 changed files with 32 additions and 7 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)
}
}
@ -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) {