(self, message)
| 37 | |
| 38 | class SlowP2PInterface(P2PInterface): |
| 39 | def on_ping(self, message): |
| 40 | time.sleep(0.1) |
| 41 | self.send_message(msg_pong(message.nonce)) |
| 42 | |
| 43 | class P2PEvict(BitcoinTestFramework): |
| 44 | def set_test_params(self): |
nothing calls this directly
no test coverage detected