-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
solana[WIP]: Refactor to reduce code duplication
- Loading branch information
Showing
4 changed files
with
196 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
solana/programs/example-native-token-transfers/src/instructions/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
pub mod admin; | ||
pub mod initialize; | ||
pub mod initialize_multisig; | ||
pub mod luts; | ||
pub mod mark_outbox_item_as_released; | ||
pub mod redeem; | ||
pub mod release_inbound; | ||
pub mod release_inbound_multisig; | ||
pub mod transfer; | ||
|
||
pub use admin::*; | ||
pub use initialize::*; | ||
pub use initialize_multisig::*; | ||
pub use luts::*; | ||
pub use mark_outbox_item_as_released::*; | ||
pub use redeem::*; | ||
pub use release_inbound::*; | ||
pub use release_inbound_multisig::*; | ||
pub use transfer::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters