Example #1
0
 def sync_with_ping(self, timeout=30):
     def received_pong():
         return (self.last_pong.nonce == self.ping_counter)
     self.connection.send_message(msg_ping(nonce=self.ping_counter))
     success = wait_until(received_pong, timeout)
     self.ping_counter += 1
     return success
 def sync_with_ping(self, timeout=30):
     def received_pong():
         return (self.last_pong.nonce == self.ping_counter)
     self.connection.send_message(msg_ping(nonce=self.ping_counter))
     success = wait_until(received_pong, timeout)
     self.ping_counter += 1
     return success
Example #3
0
    def wait_for_disconnect(self):
        def disconnected():
            return self.peer_disconnected

        return wait_until(disconnected, timeout=10)
Example #4
0
    def wait_for_verack(self):
        def veracked():
            return self.verack_received

        return wait_until(veracked, timeout=10)
 def wait_for_disconnect(self):
     def disconnected():
         return self.peer_disconnected
     return wait_until(disconnected, timeout=10)
 def wait_for_verack(self):
     def veracked():
         return self.verack_received
     return wait_until(veracked, timeout=10)