Skip to content

Commit

Permalink
fix wallet data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Mar 5, 2019
1 parent 3bfb35b commit 226e158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refwallet/src/lmdb_wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl<C, K> LMDBBackend<C, K> {
fs::create_dir_all(&stored_tx_path)
.expect("Couldn't create wallet backend tx storage directory!");

let store = store::Store::new(db_path.to_str().unwrap(), Some(DB_DIR), None)?;
let store = store::Store::new(db_path.to_str().unwrap(), None, None)?;

// Make sure default wallet derivation path always exists
// as well as path (so it can be retrieved by batches to know where to store
Expand Down

0 comments on commit 226e158

Please sign in to comment.