aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p_addr_relay.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/p2p_addr_relay.py')
-rwxr-xr-xtest/functional/p2p_addr_relay.py15
1 files changed, 0 insertions, 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())