Update command prompts

This commit is contained in:
AnilChinchawale 2019-03-16 16:13:35 +05:30
parent bc31e1e8f0
commit 9b13f2279e

View file

@ -312,7 +312,7 @@ func accountCreate(ctx *cli.Context) error {
if err != nil {
utils.Fatalf("Failed to create account: %v", err)
}
fmt.Printf("Address: {%x}\n", address)
fmt.Printf("Address: {xdc%x}\n", address)
return nil
}
@ -353,7 +353,7 @@ func importWallet(ctx *cli.Context) error {
if err != nil {
utils.Fatalf("%v", err)
}
fmt.Printf("Address: {%x}\n", acct.Address)
fmt.Printf("Address: {xdc%x}\n", acct.Address)
return nil
}
@ -374,6 +374,6 @@ func accountImport(ctx *cli.Context) error {
if err != nil {
utils.Fatalf("Could not create the account: %v", err)
}
fmt.Printf("Address: {%x}\n", acct.Address)
fmt.Printf("Address: {xdc%x}\n", acct.Address)
return nil
}