Fix off-by-1 in phase calculations and the rest of llmq-signing.py issues (#2641)

* Fix off-by-1 in phase calculations

* Fix wait_for_quorum_phase, should look for check_received_messages

* Fix wait_for_quorum_phase for complain phase

* Bump default timeout in wait_for_quorum_phase/wait_for_quorum_commitment to 15
This commit is contained in:
UdjinM6 2019-01-23 17:02:56 +03:00 committed by GitHub
parent b595f9e6a1
commit fda16f1fea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -391,7 +391,7 @@ class DashTestFramework(BitcoinTestFramework):
return False
return True
def wait_for_quorum_phase(self, phase, check_received_messages, check_received_messages_count, timeout=5):
def wait_for_quorum_phase(self, phase, check_received_messages, check_received_messages_count, timeout=15):
t = time()
while time() - t < timeout:
all_ok = True
@ -404,7 +404,7 @@ class DashTestFramework(BitcoinTestFramework):
all_ok = False
break
if check_received_messages is not None:
if s["receivedContributions"] < check_received_messages_count:
if s[check_received_messages] < check_received_messages_count:
all_ok = False
break
if all_ok:
@ -412,7 +412,7 @@ class DashTestFramework(BitcoinTestFramework):
sleep(0.1)
raise AssertionError("wait_for_quorum_phase timed out")
def wait_for_quorum_commitment(self, timeout = 5):
def wait_for_quorum_commitment(self, timeout = 15):
t = time()
while time() - t < timeout:
all_ok = True
@ -449,7 +449,7 @@ class DashTestFramework(BitcoinTestFramework):
self.nodes[0].generate(2)
# Make sure all reached phase 3 (complain) and received all complaints
self.wait_for_quorum_phase(3, "receivedComplaints" if expected_valid_count != 0 else None, expected_valid_count)
self.wait_for_quorum_phase(3, "receivedComplaints" if expected_valid_count != 10 else None, expected_valid_count)
set_mocktime(get_mocktime() + 1)
set_node_times(self.nodes, get_mocktime())
self.nodes[0].generate(2)

View File

@ -121,7 +121,7 @@ void CDKGSessionHandler::UpdatedBlockTip(const CBlockIndex* pindexNew, const CBl
quorumHash = pindexQuorum->GetBlockHash();
bool fNewPhase = (quorumStageInt % params.dkgPhaseBlocks) == 0;
int phaseInt = quorumStageInt / params.dkgPhaseBlocks;
int phaseInt = quorumStageInt / params.dkgPhaseBlocks + 1;
if (fNewPhase && phaseInt >= QuorumPhase_Initialized && phaseInt <= QuorumPhase_Idle) {
phase = static_cast<QuorumPhase>(phaseInt);
if (phase == QuorumPhase_Initialized) {

View File

@ -16,7 +16,7 @@ namespace llmq
enum QuorumPhase {
QuorumPhase_None = -1,
QuorumPhase_Initialized,
QuorumPhase_Initialized = 1,
QuorumPhase_Contribute,
QuorumPhase_Complain,
QuorumPhase_Justify,