From 57c52dcabf17c67f07612dfb2b17387ac8868a7c Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Wed, 10 Apr 2019 10:55:20 +0200 Subject: [PATCH] accounts/scwallet: fix card pairing instruction message --- 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()