-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from invariant-labs/remove-unused-entrypoints
remove unused entrypoints
- Loading branch information
Showing
38 changed files
with
158 additions
and
3,263 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
104 changes: 0 additions & 104 deletions
104
protocol/programs/protocol/src/contexts/invoke_close_position.rs
This file was deleted.
Oops, something went wrong.
126 changes: 0 additions & 126 deletions
126
protocol/programs/protocol/src/contexts/invoke_create_position.rs
This file was deleted.
Oops, something went wrong.
64 changes: 0 additions & 64 deletions
64
protocol/programs/protocol/src/contexts/invoke_update_seconds_per_liquidity.rs
This file was deleted.
Oops, something went wrong.
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,21 +1,9 @@ | ||
mod burn; | ||
mod init; | ||
mod init_pool; | ||
mod invoke_close_position; | ||
mod invoke_create_position; | ||
mod invoke_update_seconds_per_liquidity; | ||
mod mint; | ||
mod reopen_position; | ||
mod test; | ||
mod token; | ||
|
||
pub use burn::*; | ||
pub use init::*; | ||
pub use init_pool::*; | ||
pub use invoke_close_position::*; | ||
pub use invoke_create_position::*; | ||
pub use invoke_update_seconds_per_liquidity::*; | ||
pub use mint::*; | ||
pub use reopen_position::*; | ||
pub use test::*; | ||
pub use token::*; |
Oops, something went wrong.