Skip to content

Commit

Permalink
Doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Nov 10, 2023
1 parent 253b0a5 commit b49bc9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code/driver/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use malachite_vote::Threshold;
use crate::event::Event;
use crate::message::Message;

/// Driver for the state machine of the Malachite consensus engine.
/// Driver for the state machine of the Malachite consensus engine at a given height.
#[derive(Clone, Debug)]
pub struct Driver<Ctx, Client>
where
Expand All @@ -27,6 +27,7 @@ where
{
pub ctx: Ctx,
pub client: Client,

pub height: Ctx::Height,
pub private_key: Secret<PrivateKey<Ctx>>,
pub address: Ctx::Address,
Expand Down

0 comments on commit b49bc9d

Please sign in to comment.