only test rituals with dkg size < 10 for now

pull/3088/head
Kieran Prasch 2023-05-05 10:18:23 -07:00
parent 365c780eab
commit e18a3470a0
2 changed files with 9 additions and 8 deletions

View File

@ -23,7 +23,7 @@ MOCK_STAKING_CONTRACT_NAME = 'ThresholdStakingForPREApplicationMock'
# Ursula # Ursula
# #
NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS = 16 NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS = 10
NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS = NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS NUMBER_OF_STAKING_PROVIDERS_IN_BLOCKCHAIN_TESTS = NUMBER_OF_URSULAS_IN_BLOCKCHAIN_TESTS

View File

@ -25,13 +25,14 @@ PARAMS = [ # dkg_size, ritual_id, variant
(2, 0, "precomputed"), (2, 0, "precomputed"),
(4, 1, "precomputed"), (4, 1, "precomputed"),
(8, 2, "precomputed"), (8, 2, "precomputed"),
(16, 3, "precomputed"), (2, 3, "simple"),
(32, 4, "precomputed"), (4, 4, "simple"),
(2, 5, "simple"), (8, 5, "simple"),
(4, 6, "simple"), # TODO: slow and need additional accounts for testing
(8, 7, "simple"), # (16, 6, "precomputed"),
(16, 8, "simple"), # (16, 7, "simple"),
(32, 9, "simple"), # (32, 8, "precomputed"),
# (32, 9, "simple"),
] ]
BLOCKS = list(reversed(range(1, 1000))) BLOCKS = list(reversed(range(1, 1000)))