From 1d8193e2a2950fd957654b601e85ab888899c394 Mon Sep 17 00:00:00 2001 From: Amiti Uttarwar Date: Mon, 21 Jun 2021 10:05:05 -0700 Subject: [test] Remove GetAddrStore class --- test/functional/p2p_addr_relay.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/test/functional/p2p_addr_relay.py b/test/functional/p2p_addr_relay.py index 1ffb2c774b..7c144af2e2 100755 --- a/test/functional/p2p_addr_relay.py +++ b/test/functional/p2p_addr_relay.py @@ -47,21 +47,6 @@ class AddrReceiver(P2PInterface): return self.message_count['getaddr'] > 0 -class GetAddrStore(P2PInterface): - getaddr_received = False - num_ipv4_received = 0 - - def on_getaddr(self, message): - self.getaddr_received = True - - def on_addr(self, message): - for addr in message.addrs: - self.num_ipv4_received += 1 - - def addr_received(self): - return self.num_ipv4_received != 0 - - class AddrTest(BitcoinTestFramework): counter = 0 mocktime = int(time.time()) -- cgit v1.2.3