mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
aca6af0a0e
* Rename LLMQ_5_60 to LLMQ_TEST * Introduce -llmqtestparams which allows to modify LLMQ_TEST on regtest Also add support in DashTestFramework * Use parameters size=3, threshold=2 as default for LLMQ_TEST And fall back to the old parameters where necessary * Wait for all contributions, even when one member is lying Otherwise we might end up continuing too fast, which would fail the DKG. * Update src/chainparams.cpp Co-Authored-By: UdjinM6 <UdjinM6@users.noreply.github.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
104 lines
4.5 KiB
Python
Executable File
104 lines
4.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2015-2018 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
from test_framework.test_framework import DashTestFramework
|
|
from test_framework.util import *
|
|
|
|
'''
|
|
llmq-dkgerrors.py
|
|
|
|
Simulate and check DKG errors
|
|
|
|
'''
|
|
|
|
class LLMQDKGErrors(DashTestFramework):
|
|
def set_test_params(self):
|
|
self.set_dash_test_params(4, 3, [["-whitelist=127.0.0.1"]] * 4, fast_dip3_enforcement=True)
|
|
self.set_dash_dip8_activation(10)
|
|
|
|
def run_test(self):
|
|
|
|
while self.nodes[0].getblockchaininfo()["bip9_softforks"]["dip0008"]["status"] != "active":
|
|
self.nodes[0].generate(10)
|
|
sync_blocks(self.nodes, timeout=60*5)
|
|
|
|
self.nodes[0].spork("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
|
self.wait_for_sporks_same()
|
|
|
|
# Mine one quorum without simulating any errors
|
|
qh = self.mine_quorum()
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, True)
|
|
|
|
# Lets omit the contribution
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'contribution-omit', '1')
|
|
qh = self.mine_quorum(expected_contributions=2)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, False)
|
|
|
|
# Lets lie in the contribution but provide a correct justification
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'contribution-omit', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'contribution-lie', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=2, expected_justifications=1)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, True)
|
|
|
|
# Lets lie in the contribution and then omit the justification
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'justify-omit', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=2)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, False)
|
|
|
|
# Heal some damage (don't get PoSe banned)
|
|
self.heal_masternodes(33)
|
|
|
|
# Lets lie in the contribution and then also lie in the justification
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'justify-omit', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'justify-lie', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=2, expected_justifications=1)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, False)
|
|
|
|
# Lets lie about another MN
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'contribution-lie', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'justify-lie', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'complain-lie', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=1, expected_justifications=2)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, True)
|
|
|
|
# Lets omit 1 premature commitments
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'complain-lie', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'commit-omit', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=0, expected_justifications=0, expected_commitments=2)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, True)
|
|
|
|
# Lets lie in 1 premature commitments
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'commit-omit', '0')
|
|
self.mninfo[0].node.quorum('dkgsimerror', 'commit-lie', '1')
|
|
qh = self.mine_quorum(expected_contributions=3, expected_complaints=0, expected_justifications=0, expected_commitments=2)
|
|
self.assert_member_valid(qh, self.mninfo[0].proTxHash, True)
|
|
|
|
def assert_member_valid(self, quorumHash, proTxHash, expectedValid):
|
|
q = self.nodes[0].quorum('info', 100, quorumHash, True)
|
|
for m in q['members']:
|
|
if m['proTxHash'] == proTxHash:
|
|
if expectedValid:
|
|
assert(m['valid'])
|
|
else:
|
|
assert(not m['valid'])
|
|
else:
|
|
assert(m['valid'])
|
|
|
|
def heal_masternodes(self, blockCount):
|
|
# We're not testing PoSe here, so lets heal the MNs :)
|
|
self.nodes[0].spork("SPORK_17_QUORUM_DKG_ENABLED", 4070908800)
|
|
self.wait_for_sporks_same()
|
|
for i in range(blockCount):
|
|
self.bump_mocktime(1)
|
|
set_node_times(self.nodes, self.mocktime)
|
|
self.nodes[0].generate(1)
|
|
self.sync_all()
|
|
self.nodes[0].spork("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
|
self.wait_for_sporks_same()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
LLMQDKGErrors().main()
|