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