We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f087223 commit b894103Copy full SHA for b894103
1 file changed
pallets/omnipool/src/tests/slip_fee_invariants.rs
@@ -6,7 +6,7 @@ use proptest::prelude::*;
6
pub const ONE: Balance = 1_000_000_000_000;
7
8
// Starting from 1m units as tiny pools push the slip-fee inversion past its discriminant threshold and the math returns Overflow.
9
-const BALANCE_RANGE: (Balance, Balance) = (1_000_000 * ONE, 10_000_000 * ONE);
+const BALANCE_RANGE: (Balance, Balance) = (500_000 * ONE, 10_000_000 * ONE);
10
11
fn asset_reserve() -> impl Strategy<Value = Balance> {
12
BALANCE_RANGE.0..BALANCE_RANGE.1
0 commit comments