diff --git a/src/runtime2/inbox2.rs b/src/runtime2/inbox2.rs index fdffe317a062dc1a0b20e61b0d22d2ae197fea79..9c4ad0a7b3d9ab9ca18e0e6c086615366e592264 100644 --- a/src/runtime2/inbox2.rs +++ b/src/runtime2/inbox2.rs @@ -1,6 +1,7 @@ use crate::protocol::eval::ValueGroup; use crate::runtime2::branch::BranchId; use crate::runtime2::ConnectorId; +use crate::runtime2::consensus::LocalSolution; use crate::runtime2::port::PortIdLocal; // TODO: Remove Debug derive from all types @@ -39,7 +40,7 @@ pub(crate) struct DataMessageFancy { #[derive(Debug)] pub(crate) enum SyncContent { - LocalSolution(), // sending a local solution to the leader + LocalSolution(LocalSolution), // sending a local solution to the leader Notification, // just a notification (so message is about sending the SyncHeader) }