Browse Source

dont backup wallets outside of wallets folder

terminal
Craig Raw 4 years ago
parent
commit
8bc8bdb2f2
  1. 4
      src/main/java/com/sparrowwallet/sparrow/io/Storage.java

4
src/main/java/com/sparrowwallet/sparrow/io/Storage.java

@ -219,7 +219,9 @@ public class Storage {
} }
public void backupWallet() throws IOException { public void backupWallet() throws IOException {
backupWallet(null); if(walletFile.toPath().startsWith(getWalletsDir().toPath())) {
backupWallet(null);
}
} }
public void backupTempWallet() { public void backupTempWallet() {

Loading…
Cancel
Save