Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ruseinov committed Oct 24, 2023
1 parent b7a0a22 commit 5c20528
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ mod tests {

// Make sure we don't overflow and don't end up with mismatched results due to using int as
// opposed to float.
let balance = Balance::MAX / 100_00 * 100;
let balance = Balance::MAX / 10_000 * 100;
let owner_id = AccountId::new_unchecked("alice".to_string());
let payout = royalties.create_payout(balance, &owner_id);
for (key, value) in payout.payout.iter() {
Expand Down

0 comments on commit 5c20528

Please sign in to comment.