Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
salman01zp committed Jan 18, 2024
1 parent eea96c7 commit 901f6ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions precompiles/vesting/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ impl ExtBuilder {
.iter()
.chain(
[
(TestAccount::Alex.into(), 10_00_000),
(TestAccount::Bobo.into(), 10_00_000),
(TestAccount::Charlie.into(), 10_00_000),
(TestAccount::Alex.into(), 1_000_000),
(TestAccount::Bobo.into(), 1_000_000),
(TestAccount::Charlie.into(), 1_000_000),
]
.iter(),
)
Expand Down
2 changes: 1 addition & 1 deletion precompiles/vesting/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fn test_vested_transfer() {
.execute_returns(());

// Should transfer vested schedule to target account.
let vesting_info = pallet_vesting::Pallet::<Runtime>::vesting(&target);
let vesting_info = pallet_vesting::Pallet::<Runtime>::vesting(target);
assert_eq!(vesting_info, Some(schedules));
});
}
Expand Down

0 comments on commit 901f6ea

Please sign in to comment.