Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Clarify status of ratifications. #2606

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ledger/narwhal/transmission-id/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ use ledger_puzzle::{SOLUTION_ID_PREFIX, SolutionID};
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub enum TransmissionID<N: Network> {
/// A ratification.
/// This is a placeholder: currently ratifications are not actually supported.
Ratification,
/// A solution.
Solution(SolutionID<N>, N::TransmissionChecksum),
Expand Down
1 change: 1 addition & 0 deletions ledger/narwhal/transmission/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ use ledger_puzzle::Solution;
#[derive(Clone, PartialEq, Eq)]
pub enum Transmission<N: Network> {
/// A ratification.
/// This is a placeholder: currently ratifications are not actually supported.
Ratification,
/// A prover solution.
/// Attention: Observe that the solution is encapsulated in `Data`, and thus possibly unchecked.
Expand Down