Skip to content

Commit

Permalink
chore: Fix clippy error (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
conr2d committed Oct 21, 2024
1 parent 6009656 commit 23a1a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/evm/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ fn handle_sufficient_reference() {

// Sufficients should increase when creating EVM accounts.
<crate::AccountCodes<Test>>::insert(addr, vec![0]);
let account = frame_system::Account::<Test>::get(&substrate_addr);
let account = frame_system::Account::<Test>::get(substrate_addr);
// Using storage is not correct as it leads to a sufficient reference mismatch.
assert_eq!(account.sufficients, 0);

Expand Down

0 comments on commit 23a1a0c

Please sign in to comment.