From 41dd88ededf44e329a1232dab1d9aab1acc2dc2a Mon Sep 17 00:00:00 2001 From: Johnathon Slightham Date: Mon, 2 Mar 2026 15:39:00 -0500 Subject: [PATCH] Don't send sequence number so that we can hash and cache messages on board --- src/librpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librpc.cpp b/src/librpc.cpp index bc52d77..32fc623 100644 --- a/src/librpc.cpp +++ b/src/librpc.cpp @@ -41,7 +41,7 @@ int MessagingInterface::send(uint8_t *buffer, const size_t size, const uint8_t d Flatbuffers::MPIMessageBuilder builder; const auto [mpi_buffer, mpi_size] = builder.build_mpi_message( - Messaging::MessageType_PTP, PC_MODULE_ID, destination, m_sequence_number++, durable, tag, + Messaging::MessageType_PTP, PC_MODULE_ID, destination, 0, durable, tag, std::vector(buffer, buffer + size)); std::shared_lock lock(m_client_mutex);