aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Škvorc <bruno@skvorc.me>2018-06-06 17:17:41 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-06-06 17:17:41 +0800
commit90b22773e99244b37f68f3a8401c405254e0af4e (patch)
tree3601e7f6b476e285bccbfe3659b445827f3e0ec6
parent9e4f96a1a639a29144f65ed485668251787e0af7 (diff)
downloadgo-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar.gz
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar.bz2
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar.lz
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar.xz
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.tar.zst
go-tangerine-90b22773e99244b37f68f3a8401c405254e0af4e.zip
cmd/puppeth: fixed a typo in a wizard input query (#16910)
-rw-r--r--cmd/puppeth/wizard_node.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/puppeth/wizard_node.go b/cmd/puppeth/wizard_node.go
index f3fef4034..9b22da446 100644
--- a/cmd/puppeth/wizard_node.go
+++ b/cmd/puppeth/wizard_node.go
@@ -107,7 +107,7 @@ func (w *wizard) deployNode(boot bool) {
// Ethash based miners only need an etherbase to mine against
fmt.Println()
if infos.etherbase == "" {
- fmt.Printf("What address should the miner user?\n")
+ fmt.Printf("What address should the miner use?\n")
for {
if address := w.readAddress(); address != nil {
infos.etherbase = address.Hex()
@@ -115,7 +115,7 @@ func (w *wizard) deployNode(boot bool) {
}
}
} else {
- fmt.Printf("What address should the miner user? (default = %s)\n", infos.etherbase)
+ fmt.Printf("What address should the miner use? (default = %s)\n", infos.etherbase)
infos.etherbase = w.readDefaultAddress(common.HexToAddress(infos.etherbase)).Hex()
}
} else if w.conf.Genesis.Config.Clique != nil {