Skip to content

Commit

Permalink
fix: correct the post-conditions for the benchmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamantios committed May 13, 2024
1 parent 7c83a79 commit 1c06dad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/valory/skills/decision_maker_abci/rounds.py
Original file line number Diff line number Diff line change
@@ -343,7 +343,8 @@ class DecisionMakerAbciApp(AbciApp[Event]):
},
BenchmarkingModeDisabledRound: set(),
FinishedBenchmarkingRound: {
get_name(SynchronizedData.sampled_bet_index),
get_name(SynchronizedData.mocking_mode),
get_name(SynchronizedData.next_mock_data_row),
},
FinishedDecisionRequestRound: set(),
FinishedSubscriptionRound: {
@@ -354,5 +355,8 @@ class DecisionMakerAbciApp(AbciApp[Event]):
FinishedWithoutRedeemingRound: set(),
RefillRequiredRound: set(),
ImpossibleRound: set(),
BenchmarkingDoneRound: set(),
BenchmarkingDoneRound: {
get_name(SynchronizedData.mocking_mode),
get_name(SynchronizedData.next_mock_data_row),
},
}

0 comments on commit 1c06dad

Please sign in to comment.