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 <111426680+flopell@users.noreply.github.com>
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
#![allow(clippy::all)]
|
||||
pub mod composable_stable_pool_factory;
|
||||
pub mod erc_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 weighted_pool_factory_v1;
|
||||
pub mod euler_linear_pool_factory;
|
||||
pub mod gearbox_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 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;
|
||||
|
||||
Reference in New Issue
Block a user