From 04dba4ca658f642f892e6136b9e30846d91b2bef Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 27 Jun 2025 22:12:25 +0300 Subject: [PATCH 1/2] Update tests.rs --- pallets/loans/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/loans/src/tests.rs b/pallets/loans/src/tests.rs index 9e9a61808..d51fee2f2 100644 --- a/pallets/loans/src/tests.rs +++ b/pallets/loans/src/tests.rs @@ -1091,7 +1091,7 @@ fn update_market_reward_speed_works() { } #[test] -fn reward_calculation_one_palyer_in_multi_markets_works() { +fn reward_calculation_one_player_in_multi_markets_works() { new_test_ext().execute_with(|| { assert_ok!(Loans::mint(RuntimeOrigin::signed(ALICE), DOT, unit(100))); assert_ok!(Loans::mint(RuntimeOrigin::signed(ALICE), KSM, unit(100))); From daa74b7a63405a227bbb67daf7e2aca73c17f0fa Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 27 Jun 2025 22:12:56 +0300 Subject: [PATCH 2/2] Update lib.rs --- pallets/farming/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/farming/src/lib.rs b/pallets/farming/src/lib.rs index 3fa1877d8..fa7aa5c12 100644 --- a/pallets/farming/src/lib.rs +++ b/pallets/farming/src/lib.rs @@ -104,7 +104,7 @@ pub mod pallet { pub enum Error { /// Pool does not exist PoolDoesNotExist, - /// Pool associacted with asset already exists + /// Pool associated with asset already exists PoolAlreadyExists, /// Pool is not active PoolIsNotActive,