Browse Source

dont backup wallets outside of wallets folder

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

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

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

Loading…
Cancel
Save