Преглед на файлове

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

Guillaume Ballet преди 6 години
родител
ревизия
a1c5017bc5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      accounts/scwallet/wallet.go

+ 1 - 1
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()