From c37008a450fda69187dfb3c4f11d537fb552fe30 Mon Sep 17 00:00:00 2001 From: Pasta Date: Mon, 20 May 2019 12:01:39 -0500 Subject: [PATCH] update dip4-coinbasemerkalroots.py and llmq-is-cl-conflicts.py Signed-off-by: Pasta --- test/functional/dip4-coinbasemerkleroots.py | 4 ++-- test/functional/llmq-is-cl-conflicts.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/functional/dip4-coinbasemerkleroots.py b/test/functional/dip4-coinbasemerkleroots.py index 66fcf01f56..b02c278e0c 100755 --- a/test/functional/dip4-coinbasemerkleroots.py +++ b/test/functional/dip4-coinbasemerkleroots.py @@ -16,9 +16,9 @@ Checks DIP4 merkle roots in coinbases ''' -class TestNode(SingleNodeConnCB): +class TestNode(NodeConnCB): def __init__(self): - SingleNodeConnCB.__init__(self) + super().__init__() self.last_mnlistdiff = None def on_mnlistdiff(self, conn, message): diff --git a/test/functional/llmq-is-cl-conflicts.py b/test/functional/llmq-is-cl-conflicts.py index 4351728e85..f376f3b7d6 100755 --- a/test/functional/llmq-is-cl-conflicts.py +++ b/test/functional/llmq-is-cl-conflicts.py @@ -15,9 +15,9 @@ Checks conflict handling between ChainLocks and InstantSend ''' -class TestNode(SingleNodeConnCB): +class TestNode(NodeConnCB): def __init__(self): - SingleNodeConnCB.__init__(self) + super().__init__() self.clsigs = {} self.islocks = {}