What changed, and why it matters
This commit is a simple spelling/brand-name correction. It changes every visible mention of 'Blue Wallet' to 'BlueWallet' in the code that handles importing and exporting multisig wallet setups from the BlueWallet mobile app. There is no security change.
No security action needed. Treat as a routine cosmetic/brand consistency fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff only updates four user-facing strings and one keystore label replacement string in BlueWalletMultisig.java from ‘Blue Wallet’ to ‘BlueWallet’. No logic, parsing, cryptography, input handling, or control flow is altered. The underlying behavior of the ColdcardMultisig-derived importer/exporter remains identical.
Changed components
src/main/java/com/sparrowwallet/sparrow/io/BlueWalletMultisig.javaInspect captured patch +5 / −5
diff --git a/src/main/java/com/sparrowwallet/sparrow/io/BlueWalletMultisig.java b/src/main/java/com/sparrowwallet/sparrow/io/BlueWalletMultisig.java
index 0ec7b31..7a75d36 100644
--- a/src/main/java/com/sparrowwallet/sparrow/io/BlueWalletMultisig.java
+++ b/src/main/java/com/sparrowwallet/sparrow/io/BlueWalletMultisig.java
@@ -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
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.