Skip to content

Commit 6b22bf7

Browse files
committed
fix: change from iggy_common to iggy_binary_protocol`
1 parent e8eaebb commit 6b22bf7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/consensus/src/clients_table.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
use iggy_common::header::ReplyHeader;
19-
use iggy_common::message::Message;
18+
use iggy_binary_protocol::{Message, ReplyHeader};
2019
use std::collections::HashMap;
2120

2221
/// Per-client entry in the clients table (VR paper Section 4, Figure 2).
@@ -148,7 +147,7 @@ impl ClientsTable {
148147
#[cfg(test)]
149148
mod tests {
150149
use super::*;
151-
use iggy_common::header::{Command2, Operation};
150+
use iggy_binary_protocol::{Command2, Operation};
152151

153152
fn make_reply(request: u64) -> Message<ReplyHeader> {
154153
let header_size = std::mem::size_of::<ReplyHeader>();

0 commit comments

Comments
 (0)