Skip to content

Commit

Permalink
doc: add details of log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
renancloudwalk committed Jun 12, 2024
1 parent b133513 commit 95aa658
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// Holds the log entries that are stored in the Raft log.
/// The log entries are either a BlockHeader or a TransactionExecution.
/// The LogEntry struct is used to store the index and term of the log entry.
use prost::Message;
use serde::Deserialize;
use serde::Serialize;
Expand Down
2 changes: 1 addition & 1 deletion src/eth/consensus/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod append_entries_storage;
pub mod forward_to;
mod log_entry;

use std::collections::HashMap;
#[cfg(feature = "kubernetes")]
Expand Down

0 comments on commit 95aa658

Please sign in to comment.