Skip to content

Commit 2f46a73

Browse files
Swaderkielbarry
authored andcommitted
cmd/puppeth: fixed a typo in a wizard input query (ethereum#16910)
1 parent ab0aaa6 commit 2f46a73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/puppeth/wizard_node.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,15 @@ func (w *wizard) deployNode(boot bool) {
107107
// Ethash based miners only need an etherbase to mine against
108108
fmt.Println()
109109
if infos.etherbase == "" {
110-
fmt.Printf("What address should the miner user?\n")
110+
fmt.Printf("What address should the miner use?\n")
111111
for {
112112
if address := w.readAddress(); address != nil {
113113
infos.etherbase = address.Hex()
114114
break
115115
}
116116
}
117117
} else {
118-
fmt.Printf("What address should the miner user? (default = %s)\n", infos.etherbase)
118+
fmt.Printf("What address should the miner use? (default = %s)\n", infos.etherbase)
119119
infos.etherbase = w.readDefaultAddress(common.HexToAddress(infos.etherbase)).Hex()
120120
}
121121
} else if w.conf.Genesis.Config.Clique != nil {

0 commit comments

Comments
 (0)