Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pallets/farming/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub mod pallet {
pub enum Error<T> {
/// Pool does not exist
PoolDoesNotExist,
/// Pool associacted with asset already exists
/// Pool associated with asset already exists
PoolAlreadyExists,
/// Pool is not active
PoolIsNotActive,
Expand Down
2 changes: 1 addition & 1 deletion pallets/loans/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down