Merge branch 'develop' of https://github.com/serai-dex/serai into move-emissions-tests

This commit is contained in:
akildemir
2024-09-02 15:50:09 +03:00
9 changed files with 33 additions and 7 deletions

View File

@@ -6,7 +6,12 @@ mod tests;
#[cfg(test)]
mod mock;
#[allow(clippy::cast_possible_truncation, clippy::no_effect_underscore_binding, clippy::empty_docs)]
#[allow(
unreachable_patterns,
clippy::cast_possible_truncation,
clippy::no_effect_underscore_binding,
clippy::empty_docs
)]
#[frame_support::pallet]
pub mod pallet {
use super::*;
@@ -14,7 +19,6 @@ pub mod pallet {
use frame_support::{pallet_prelude::*, sp_runtime::SaturatedConversion};
use sp_std::{vec, vec::Vec, ops::Mul, collections::btree_map::BTreeMap};
use sp_runtime;
use coins_pallet::{Config as CoinsConfig, Pallet as Coins};
use dex_pallet::{Config as DexConfig, Pallet as Dex};