mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-02 03:07:37 +00:00
Update command prompts
This commit is contained in:
parent
bc31e1e8f0
commit
9b13f2279e
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue