Skip to content

Commit

Permalink
wallet: re-export fs module
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jul 6, 2024
1 parent b63f667 commit b3cdda6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ pub use layer2::{
pub use rows::{CoinRow, Counterparty, OpType, TxRow};
pub use util::MayError;
#[cfg(feature = "fs")]
pub use wallet::FsConfig;
pub use wallet::{fs, FsConfig};
pub use wallet::{Save, Wallet, WalletCache, WalletData, WalletDescr};
2 changes: 1 addition & 1 deletion src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ where Self: Save
}

#[cfg(feature = "fs")]
pub(crate) mod fs {
pub mod fs {
use std::convert::Infallible;
use std::error::Error;
use std::path::{Path, PathBuf};
Expand Down

0 comments on commit b3cdda6

Please sign in to comment.