mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
accounts/scwallet: fix card pairing instruction message
This commit is contained in:
parent
1fc3e44ffe
commit
57c52dcabf
1 changed files with 1 additions and 1 deletions
|
|
@ -303,7 +303,7 @@ func (w *Wallet) Status() (string, error) {
|
||||||
|
|
||||||
// If the card is not paired, we can only wait
|
// If the card is not paired, we can only wait
|
||||||
if !w.session.paired() {
|
if !w.session.paired() {
|
||||||
return "Unpaired, waiting for PUK", nil
|
return "Unpaired, waiting for pairing password", nil
|
||||||
}
|
}
|
||||||
// Yay, we have an encrypted session, retrieve the actual status
|
// Yay, we have an encrypted session, retrieve the actual status
|
||||||
status, err := w.session.walletStatus()
|
status, err := w.session.walletStatus()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue