Skip to content

Commit

Permalink
create key directory if it does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
christophsturm committed Aug 1, 2019
1 parent 18115c9 commit f96edd2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions common/src/main/java/bisq/common/crypto/KeyStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public String toString() {

@Inject
public KeyStorage(@Named(KEY_STORAGE_DIR) File storageDir) {
storageDir.mkdirs();
this.storageDir = storageDir;
}

Expand Down

0 comments on commit f96edd2

Please sign in to comment.