mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# Copyright (c) 2022 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 assert_equal, p2p_port
|
||
|
|
||
|
'''
|
||
|
rpc_quorum.py
|
||
|
|
||
|
Test "quorum" rpc subcommands
|
||
|
'''
|
||
|
|
||
|
class RPCMasternodeTest(DashTestFramework):
|
||
|
def set_test_params(self):
|
||
|
self.set_dash_test_params(4, 3, fast_dip3_enforcement=True)
|
||
|
|
||
|
def run_test(self):
|
||
|
self.nodes[0].sporkupdate("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
||
|
self.wait_for_sporks_same()
|
||
|
quorum_hash = self.mine_quorum()
|
||
|
|
||
|
quorum_info = self.nodes[0].quorum("info", 100, quorum_hash)
|
||
|
for idx in range(0, self.mn_count):
|
||
|
mn = self.mninfo[idx]
|
||
|
for member in quorum_info["members"]:
|
||
|
if member["proTxHash"] == mn.proTxHash:
|
||
|
assert_equal(member["service"], '127.0.0.1:%d' % p2p_port(mn.nodeIdx))
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
RPCMasternodeTest().main()
|