From c67c1f2c032a8efa141d776a7e5be58f052159ea Mon Sep 17 00:00:00 2001 From: John Newbery Date: Fri, 5 Jun 2020 10:59:40 -0400 Subject: [PATCH] [tests] Don't call super twice in P2PTxInvStore.on_inv() --- test/functional/test_framework/mininode.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/functional/test_framework/mininode.py b/test/functional/test_framework/mininode.py index 69307d19608..a2c695a7049 100755 --- a/test/functional/test_framework/mininode.py +++ b/test/functional/test_framework/mininode.py @@ -658,8 +658,6 @@ class P2PTxInvStore(P2PInterface): # save txid self.tx_invs_received[i.hash] += 1 - super().on_inv(message) - def get_invs(self): with mininode_lock: return list(self.tx_invs_received.keys())