mirror of https://github.com/nucypher/nucypher.git
only test rituals with dkg size < 10 for now
parent
365c780eab
commit
e18a3470a0
|
@ -23,7 +23,7 @@ MOCK_STAKING_CONTRACT_NAME = 'ThresholdStakingForPREApplicationMock'
|
|||
# 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
|
||||
|
||||
|
|
|
@ -25,13 +25,14 @@ PARAMS = [ # dkg_size, ritual_id, variant
|
|||
(2, 0, "precomputed"),
|
||||
(4, 1, "precomputed"),
|
||||
(8, 2, "precomputed"),
|
||||
(16, 3, "precomputed"),
|
||||
(32, 4, "precomputed"),
|
||||
(2, 5, "simple"),
|
||||
(4, 6, "simple"),
|
||||
(8, 7, "simple"),
|
||||
(16, 8, "simple"),
|
||||
(32, 9, "simple"),
|
||||
(2, 3, "simple"),
|
||||
(4, 4, "simple"),
|
||||
(8, 5, "simple"),
|
||||
# TODO: slow and need additional accounts for testing
|
||||
# (16, 6, "precomputed"),
|
||||
# (16, 7, "simple"),
|
||||
# (32, 8, "precomputed"),
|
||||
# (32, 9, "simple"),
|
||||
]
|
||||
|
||||
BLOCKS = list(reversed(range(1, 1000)))
|
||||
|
|
Loading…
Reference in New Issue