From 19091312ee589fe6985e7008db19e919889a4d21 Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:45:52 +0100 Subject: [PATCH 1/3] Update check_runtime_changes.sh --- ci/check_runtime_changes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/check_runtime_changes.sh b/ci/check_runtime_changes.sh index dd847daf8e..4f539d0a80 100755 --- a/ci/check_runtime_changes.sh +++ b/ci/check_runtime_changes.sh @@ -48,7 +48,7 @@ RUNTIME_FILE_CHANGED=$(echo "${CHANGED_FILES}" | grep -e ^runtime/ | wc -l) echo "There are ${RUNTIME_FILE_CHANGED} file(s) changed in runtime " -# If there are no changes in the runtime file, exit sucessfully +# If there are no changes in the runtime file, exit successfully if (( $RUNTIME_FILE_CHANGED == 0 )) then echo -e "| ${OK} Nothing is changed in runtime" From 3e190bf9d112fc4e232ae46dd7a5669b9c7b1850 Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:47:48 +0100 Subject: [PATCH 2/3] Update lib.rs --- pallets/liquidity-pools/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/liquidity-pools/src/lib.rs b/pallets/liquidity-pools/src/lib.rs index 657df1978c..e30b98612c 100644 --- a/pallets/liquidity-pools/src/lib.rs +++ b/pallets/liquidity-pools/src/lib.rs @@ -301,7 +301,7 @@ pub mod pallet { /// The metadata of the given asset does not declare it as transferable /// via LiquidityPools'. AssetNotLiquidityPoolsTransferable, - /// The asset is not a a wrapped token and thus cannot be + /// The asset is not a wrapped token and thus cannot be /// transferred via liquidity pools. AssetNotLiquidityPoolsWrappedToken, /// A pool could not be found. From 6d1e2be9754dc56224dacb297988c1d03b28cf06 Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:48:08 +0100 Subject: [PATCH 3/3] Update tranches.rs --- pallets/pool-system/src/tranches.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/pool-system/src/tranches.rs b/pallets/pool-system/src/tranches.rs index 946977e587..b7d80f178d 100644 --- a/pallets/pool-system/src/tranches.rs +++ b/pallets/pool-system/src/tranches.rs @@ -2064,7 +2064,7 @@ pub mod test { fn replace_tranche_less_interest_than_next_works() { let mut tranches = default_tranches(); - // ensure we have an interest rate lower than the the left side tranche with a + // ensure we have an interest rate lower than the left side tranche with a // lower index, e.g. lower than 10% at index 1 let int_per_sec = Rate::one() / Rate::saturating_from_integer(SECS_PER_YEAR); let min_risk_buffer = Perquintill::from_rational(4u64, 5);