qa: Fix bug introduced in p2p-segwit.py

Changing __init__() -> set_test_params() in the tests should not have
applied to NodeConnCB-derived objects.
This commit is contained in:
Suhas Daftuar 2017-09-13 09:21:27 -04:00
parent a7820422e0
commit f97ab35fa9
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ def get_virtual_size(witness_block):
return vsize
class TestNode(NodeConnCB):
def set_test_params(self):
self.num_nodes = 3
def __init__(self):
super().__init__()
self.getdataset = set()
def on_getdata(self, conn, message):