We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
iggy_common
1 parent e8eaebb commit 6b22bf7Copy full SHA for 6b22bf7
core/consensus/src/clients_table.rs
@@ -15,8 +15,7 @@
15
// specific language governing permissions and limitations
16
// under the License.
17
18
-use iggy_common::header::ReplyHeader;
19
-use iggy_common::message::Message;
+use iggy_binary_protocol::{Message, ReplyHeader};
20
use std::collections::HashMap;
21
22
/// Per-client entry in the clients table (VR paper Section 4, Figure 2).
@@ -148,7 +147,7 @@ impl ClientsTable {
148
147
#[cfg(test)]
149
mod tests {
150
use super::*;
151
- use iggy_common::header::{Command2, Operation};
+ use iggy_binary_protocol::{Command2, Operation};
152
153
fn make_reply(request: u64) -> Message<ReplyHeader> {
154
let header_size = std::mem::size_of::<ReplyHeader>();
0 commit comments