Skip to content

Commit

Permalink
program: export state module (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrieck authored Oct 31, 2024
1 parent 70d7805 commit 7aa9bc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion programs/drift_vaults/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod drift_cpi;
mod error;
mod instructions;
pub mod macros;
mod state;
pub mod state;
mod tests;
mod token_cpi;

Expand Down
10 changes: 5 additions & 5 deletions programs/drift_vaults/src/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ pub use withdraw_unit::*;

pub mod account_maps;
pub mod events;
mod tokenized_vault_depositor;
pub mod tokenized_vault_depositor;
pub mod traits;
mod vault;
mod vault_depositor;
mod vault_protocol;
pub mod vault;
pub mod vault_depositor;
pub mod vault_protocol;
pub mod withdraw_request;
mod withdraw_unit;
pub mod withdraw_unit;

0 comments on commit 7aa9bc0

Please sign in to comment.