fix two typos (#3491)
This commit is contained in:
parent
29e5a4a752
commit
f550eb2f17
|
@ -109,7 +109,7 @@ proc askForExitConfirmation(): ClientExitAction =
|
||||||
ClientExitAction.quiting
|
ClientExitAction.quiting
|
||||||
|
|
||||||
proc rpcValidatorExit(config: BeaconNodeConf) {.async.} =
|
proc rpcValidatorExit(config: BeaconNodeConf) {.async.} =
|
||||||
warn "The JS0R-PRC API is deprecated. Consider using the REST API"
|
warn "The JSON-PRC API is deprecated. Consider using the REST API"
|
||||||
|
|
||||||
let port = try:
|
let port = try:
|
||||||
let value = parseInt(config.rpcUrlForExit.get.port)
|
let value = parseInt(config.rpcUrlForExit.get.port)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# beacon_chain
|
# beacon_chain
|
||||||
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
||||||
# Licensed and distributed under either of
|
# Licensed and distributed under either of
|
||||||
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
||||||
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
||||||
|
@ -1276,7 +1276,7 @@ proc createWalletInteractively*(
|
||||||
"a password, setting such an additional password is optional. " &
|
"a password, setting such an additional password is optional. " &
|
||||||
"To ensure the strongest possible security, we recommend writing " &
|
"To ensure the strongest possible security, we recommend writing " &
|
||||||
"down your seed phrase and remembering your recovery password. " &
|
"down your seed phrase and remembering your recovery password. " &
|
||||||
"If you don'n want to set a recovery password, just press ENTER."
|
"If you don't want to set a recovery password, just press ENTER."
|
||||||
|
|
||||||
var recoveryPassword = keyboardCreatePassword(
|
var recoveryPassword = keyboardCreatePassword(
|
||||||
"Recovery password: ", "Confirm password: ", allowEmpty = true)
|
"Recovery password: ", "Confirm password: ", allowEmpty = true)
|
||||||
|
|
Loading…
Reference in New Issue