def assemble_protocol_msg(self, msg): return rlp.encode(msg) + int_to_bytes(get_msg_id(msg))
def send_protocol_msg(self, msg): """Send packet of protocols""" self.send_protocol_packet(int_to_bytes( get_msg_id(msg)) + rlp.encode(msg))