accounts/scwallet: fix card pairing instruction message (#19436)

This commit is contained in:
Daniel Liu 2025-01-14 10:56:08 +08:00
parent 194a77505f
commit 44b6b14685

View file

@ -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()