-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ensure consistent ABI iteration order in build files (#131)
Previously, build files iterated through ABIs in an inconsistent order, causing unwanted changes when the build was rerun, as the iteration order would differ. This commit resolves the issue by sorting ABIs by name, ensuring consistent formatting and preventing unintended changes in future commits. Co-authored-by: zizou <[email protected]>
- Loading branch information
Showing
4 changed files
with
22 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#![allow(clippy::all)] | ||
pub mod composable_stable_pool_factory; | ||
pub mod erc_linear_pool_factory; | ||
pub mod euler_linear_pool_factory; | ||
pub mod gearbox_linear_pool_factory; | ||
pub mod weighted_pool_tokens_factory; | ||
pub mod vault; | ||
pub mod yearn_linear_pool_factory; | ||
pub mod managed_pool_factory; | ||
pub mod silo_linear_pool_factory; | ||
pub mod vault; | ||
pub mod weighted_pool_factory_v1; | ||
pub mod euler_linear_pool_factory; | ||
pub mod weighted_pool_factory_v2; | ||
pub mod weighted_pool_factory_v3; | ||
pub mod weighted_pool_factory_v4; | ||
pub mod silo_linear_pool_factory; | ||
pub mod composable_stable_pool_factory; | ||
pub mod weighted_pool_tokens_factory; | ||
pub mod yearn_linear_pool_factory; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#![allow(clippy::all)] | ||
pub mod crypto_pool_factory; | ||
pub mod erc20; | ||
pub mod crypto_swap_ng_factory; | ||
pub mod erc20; | ||
pub mod meta_pool_factory; | ||
pub mod meta_registry; | ||
pub mod stableswap_factory; | ||
pub mod tricrypto_factory; | ||
pub mod twocrypto_factory; | ||
pub mod meta_pool_factory; |