Skip to content

Commit

Permalink
refactor: expose the tx module publicly
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-napoleone committed Nov 30, 2021
1 parent 25eb328 commit f7f39cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cache.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::collections::HashMap;
use std::time::Instant;

use crate::Tx;
use crate::tx::Tx;

type StampedValue = (Instant, Tx);

Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
pub use crate::tx::Tx;
pub use crate::watcher::Watcher;

mod cache;
mod errors;
mod responses;
mod terra;
mod tx;
pub mod tx;
mod watcher;

0 comments on commit f7f39cd

Please sign in to comment.