Skip to content

Commit

Permalink
Disable more tests (#117)
Browse files Browse the repository at this point in the history
It was observed that the daemon has become very slow and not working as
expected. For that, this PR proposes to disable the
CombinatorialAuctionSurplusTest and the UniformDirectedPricesTest, as
both are non-actionable, and with the hope that the daemon will start
working again as expected.
  • Loading branch information
harisang committed Sep 3, 2024
1 parent ceb39e7 commit 93df4da
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@
from src.monitoring_tests.mev_blocker_kickbacks_test import (
MEVBlockerRefundsMonitoringTest,
)
from src.monitoring_tests.combinatorial_auction_surplus_test import (
CombinatorialAuctionSurplusTest,
)
from src.monitoring_tests.uniform_directed_prices_test import (
UniformDirectedPricesTest,
)
from src.constants import SLEEP_TIME_IN_SEC


Expand All @@ -35,8 +29,6 @@ def main() -> None:
tests = [
SolverCompetitionSurplusTest(),
MEVBlockerRefundsMonitoringTest(),
CombinatorialAuctionSurplusTest(),
UniformDirectedPricesTest(),
]

start_block: Optional[int] = None
Expand Down

0 comments on commit 93df4da

Please sign in to comment.