fix bluewallet spelling

This commit is contained in:
Craig Raw 2025-08-12 08:09:01 +02:00
parent e8c5660897
commit 6d53e1ed1d
2 changed files with 5 additions and 5 deletions

2
drongo

@ -1 +1 @@
Subproject commit b69e8f362912d954ade2afb20ec65caa9e5bc6fb
Subproject commit 23f2b9197a42d799120abe16db9131601d63dcff

View file

@ -9,7 +9,7 @@ import java.io.InputStream;
public class BlueWalletMultisig extends ColdcardMultisig {
@Override
public String getName() {
return "Blue Wallet Vault Multisig";
return "BlueWallet Vault Multisig";
}
@Override
@ -21,7 +21,7 @@ public class BlueWalletMultisig extends ColdcardMultisig {
public Wallet importWallet(InputStream inputStream, String password) throws ImportException {
Wallet wallet = super.importWallet(inputStream, password);
for(Keystore keystore : wallet.getKeystores()) {
keystore.setLabel(keystore.getLabel().replace("Coldcard", "Blue Wallet"));
keystore.setLabel(keystore.getLabel().replace("Coldcard", "BlueWallet"));
keystore.setWalletModel(WalletModel.BLUE_WALLET);
}
@ -30,12 +30,12 @@ public class BlueWalletMultisig extends ColdcardMultisig {
@Override
public String getWalletImportDescription() {
return "Import file or QR created by using the Wallet > Export Coordination Setup feature on your Blue Wallet Vault wallet.";
return "Import file or QR created by using the Wallet > Export Coordination Setup feature on your BlueWallet Vault wallet.";
}
@Override
public String getWalletExportDescription() {
return "Export file that can be read by Blue Wallet using the Add Wallet > Vault > Import wallet feature.";
return "Export file that can be read by BlueWallet using the Add Wallet > Vault > Import wallet feature.";
}
@Override