From a1c5017bc5f2cbb267b948b854507d47e234064d Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Wed, 10 Apr 2019 12:46:35 +0200 Subject: [PATCH] accounts/scwallet: fix card pairing instruction message (#19436) --- accounts/scwallet/wallet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/scwallet/wallet.go b/accounts/scwallet/wallet.go index 033a46c770..4c9a422a32 100644 --- a/accounts/scwallet/wallet.go +++ b/accounts/scwallet/wallet.go @@ -303,7 +303,7 @@ func (w *Wallet) Status() (string, error) { // If the card is not paired, we can only wait 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 status, err := w.session.walletStatus()