From fcff34df9a578eb7ae34f904d44e3296783845ac Mon Sep 17 00:00:00 2001 From: mdelle1 <108158289+mdelle1@users.noreply.github.com> Date: Sun, 24 Mar 2024 18:14:29 -0400 Subject: [PATCH] Removes comment --- node/bft/src/helpers/timestamp.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/node/bft/src/helpers/timestamp.rs b/node/bft/src/helpers/timestamp.rs index 0c546bd266..2b361fa3cc 100644 --- a/node/bft/src/helpers/timestamp.rs +++ b/node/bft/src/helpers/timestamp.rs @@ -28,11 +28,6 @@ pub fn check_timestamp_for_liveness(timestamp: i64) -> Result<()> { if timestamp > (now() + MAX_TIMESTAMP_DELTA_IN_SECS) { bail!("Timestamp {timestamp} is too far in the future") } - // TODO (howardwu): Ensure the timestamp is after the previous timestamp. (Needs Bullshark committee) - // // Ensure the timestamp is after the previous timestamp. - // if timestamp <= committee.previous_timestamp() { - // bail!("Timestamp {timestamp} for the proposed batch must be after the previous round timestamp") - // } Ok(()) }