Merge bitcoin/bitcoin#26546: test: remove unused class NodePongAdd1

40bdc8a6e4dcf7faf90f63b0912c18d72436e37f test: remove unused class `NodePongAdd1` (Sebastian Falbesoner)

Pull request description:

  This class was introduced in commit fa3365430c5fb57d7c0b5f2bce9fbbe290be93c3 ("net: Use mockable time for ping/pong, add tests"), but actually never used.

ACKs for top commit:
  stickies-v:
    ACK 40bdc8a6e

Tree-SHA512: b5a6552e4f2e0b7e368a071cc53b9a8e6f5d1950565a9fda8eb1971a01d8be0541d066842723ef44174fe8189925fa36f2defb6d7bf8d104abc77de410cc4c13
This commit is contained in:
fanquake 2022-11-21 15:23:59 +00:00
commit 01a66e21ef
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

View File

@ -12,7 +12,9 @@ from test_framework.p2p import P2PInterface
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal
PING_INTERVAL = 2 * 60
TIMEOUT_INTERVAL = 20 * 60
class msg_pong_corrupt(msg_pong):
@ -20,19 +22,11 @@ class msg_pong_corrupt(msg_pong):
return b""
class NodePongAdd1(P2PInterface):
def on_ping(self, message):
self.send_message(msg_pong(message.nonce + 1))
class NodeNoPong(P2PInterface):
def on_ping(self, message):
pass
TIMEOUT_INTERVAL = 20 * 60
class PingPongTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True