Exemple #1
0
 public void SetPreviousJustifiedCheckpoint(Checkpoint checkpoint) => PreviousJustifiedCheckpoint = checkpoint;
Exemple #2
0
 public void SetCurrentJustifiedCheckpoint(Checkpoint checkpoint) => CurrentJustifiedCheckpoint = checkpoint;
Exemple #3
0
 public void SetFinalizedCheckpoint(Checkpoint checkpoint) => FinalizedCheckpoint = checkpoint;
Exemple #4
0
 public bool Equals(Checkpoint other)
 {
     return(Epoch == other.Epoch && Root == other.Root);
 }