From 2da46b88f09ff3c58c94bd258273c04d16c8b649 Mon Sep 17 00:00:00 2001 From: glozow Date: Thu, 16 Jan 2025 14:09:39 -0500 Subject: [PATCH] pass P2PTxInvStore init args to P2PInterface init --- test/functional/test_framework/p2p.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/test_framework/p2p.py b/test/functional/test_framework/p2p.py index 523e1bd0682..207d19137b1 100755 --- a/test/functional/test_framework/p2p.py +++ b/test/functional/test_framework/p2p.py @@ -928,8 +928,8 @@ class P2PDataStore(P2PInterface): class P2PTxInvStore(P2PInterface): """A P2PInterface which stores a count of how many times each txid has been announced.""" - def __init__(self): - super().__init__() + def __init__(self, **kwargs): + super().__init__(**kwargs) self.tx_invs_received = defaultdict(int) def on_inv(self, message):