Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit d6841c6

Browse files
committed
use larger test fee amounts, improve chain coverage
1 parent f2b5708 commit d6841c6

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

tests/conftest.py

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,20 @@ def chain(run_config, web3):
4444

4545
@pytest.fixture
4646
def allocator(fee_period):
47-
input_fees = {"mainnet": Decimal("10000000.0"), "optimism": Decimal("10000.0")}
47+
input_fees = {
48+
"mainnet": Decimal("1000000"),
49+
"arbitrum": Decimal("1000000"),
50+
"polygon": Decimal("1000000"),
51+
"optimism": Decimal("1000000"),
52+
"base": Decimal("1000000"),
53+
"gnosis": Decimal("1000000"),
54+
"avalanche": Decimal("1000000"),
55+
"plasma": Decimal("1000000"),
56+
}
4857

4958
return FeeAllocator(
50-
input_fees,
51-
fee_period,
52-
cache_dir=Path("tests/cache"),
59+
input_fees,
60+
fee_period,
61+
cache_dir=Path("tests/cache"),
5362
use_cache=True
5463
)

0 commit comments

Comments
 (0)