Skip to content

Commit b894103

Browse files
committed
make the range more inclusive
1 parent f087223 commit b894103

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pallets/omnipool/src/tests/slip_fee_invariants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use proptest::prelude::*;
66
pub const ONE: Balance = 1_000_000_000_000;
77

88
// 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);
9+
const BALANCE_RANGE: (Balance, Balance) = (500_000 * ONE, 10_000_000 * ONE);
1010

1111
fn asset_reserve() -> impl Strategy<Value = Balance> {
1212
BALANCE_RANGE.0..BALANCE_RANGE.1

0 commit comments

Comments
 (0)