From 44b6b146855cd3444fa9c3744afc716f6c51079e Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Tue, 14 Jan 2025 10:56:08 +0800 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 6d76985df2..37e2682136 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()