mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
54816bfbfd
* Fix GetDevNetName * Fix initialize_datadir * Adjust peer_connect to use the same devnet name as in initialize_datadir * Tweak p2p_connect_to_devnet.py to test mininode devnet connections
32 lines
1.0 KiB
Python
Executable File
32 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2021 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Test being able to connect to the same devnet"""
|
|
|
|
from test_framework.mininode import P2PInterface
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import assert_equal, connect_nodes_bi
|
|
|
|
class ConnectDevnetNodes(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.setup_clean_chain = True
|
|
self.chain = "devnet"
|
|
self.num_nodes = 2
|
|
|
|
def setup_network(self):
|
|
self.add_nodes(self.num_nodes)
|
|
self.start_node(0)
|
|
self.start_node(1)
|
|
connect_nodes_bi(self.nodes, 0, 1)
|
|
self.sync_all()
|
|
|
|
|
|
def run_test(self):
|
|
self.nodes[0].add_p2p_connection(P2PInterface())
|
|
assert_equal(self.nodes[0].getconnectioncount(), 3) # 2 in/out dashd + 1 p2p
|
|
|
|
|
|
if __name__ == '__main__':
|
|
ConnectDevnetNodes().main()
|