|
1 | 1 | <template>
|
2 | 2 | <div class="transactions">
|
3 | 3 | <v-col offset="2" cols="8">
|
4 |
| - <v-row v-if="isLiqualityWallet" justify="center" class="mx-0 mb-1"> |
| 4 | + <v-row v-if="isSftwWallet" justify="center" class="mx-0 mb-1"> |
5 | 5 | <h1>Enable {{ walletName }} wallet</h1>
|
6 | 6 | </v-row>
|
7 | 7 | <v-row v-else justify="center" class="mx-0 mb-1">
|
|
17 | 17 | <div class="number">1</div>
|
18 | 18 | </v-col>
|
19 | 19 | <v-col cols="11">
|
20 |
| - <p v-if="isLiqualityWallet" |
| 20 | + <p v-if="isSftwWallet" |
21 | 21 | class="ma-0">
|
22 |
| - Make sure Liquality is installed and enabled in your browser. |
| 22 | + Make sure {{ walletName }} is installed and enabled in your browser. |
23 | 23 | </p>
|
24 |
| - <p v-if="!isLiqualityWallet" |
| 24 | + <p v-if="isHdWallet" |
25 | 25 | class="ma-0">
|
26 | 26 | Plug your {{ walletName }} device into your computer
|
27 | 27 | </p>
|
|
34 | 34 | <v-col v-if="isHdWallet" cols="11">
|
35 | 35 | <p class="ma-0">Insert {{ walletName }} device PIN code</p>
|
36 | 36 | </v-col>
|
37 |
| - <v-col v-if="needsUnlock" cols="11"> |
| 37 | + <v-col v-if="isSftwWallet" cols="11"> |
38 | 38 | <p class="ma-0">Unlock your wallet.</p>
|
39 | 39 | </v-col>
|
40 | 40 | </v-row>
|
@@ -102,7 +102,7 @@ export default defineComponent({
|
102 | 102 | const bitcoinWallet = useStateAttribute('pegInTx', 'bitcoinWallet');
|
103 | 103 | const walletName = useGetter<string>('pegInTx', constants.WALLET_NAME);
|
104 | 104 | const isHdWallet = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_HD_WALLET);
|
105 |
| - const needsUnlock = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_SF_WALLET); |
| 105 | + const isSftwWallet = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_SF_WALLET); |
106 | 106 | const clearStore = useAction('pegInTx', constants.PEGIN_TX_CLEAR_STATE);
|
107 | 107 |
|
108 | 108 | const deviceImagePath = computed(() => {
|
@@ -155,7 +155,7 @@ export default defineComponent({
|
155 | 155 | environmentContext,
|
156 | 156 | walletName,
|
157 | 157 | isHdWallet,
|
158 |
| - needsUnlock, |
| 158 | + isSftwWallet, |
159 | 159 | clearStore,
|
160 | 160 | deviceImagePath,
|
161 | 161 | isLedgerWallet,
|
|
0 commit comments