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>
10 lines
231 B
Rust
10 lines
231 B
Rust
#![allow(clippy::all)]
|
|
pub mod crypto_pool_factory;
|
|
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;
|