consensus: Refactor the node time check for testing

Part of #477.
This commit is contained in:
teor 2020-06-17 21:15:42 +10:00
parent 3f5e2695e3
commit d97c769869
1 changed files with 18 additions and 11 deletions

View File

@ -35,11 +35,27 @@ type Error = Box<dyn error::Error + Send + Sync + 'static>;
mod block { mod block {
use super::Error; use super::Error;
use chrono::{Duration, Utc}; use chrono::{DateTime, Duration, Utc};
use std::sync::Arc; use std::sync::Arc;
use zebra_chain::block::Block; use zebra_chain::block::Block;
/// Helper function for `node_time_check()`, see that function for details.
fn node_time_check_helper(
block_header_time: DateTime<Utc>,
now: DateTime<Utc>,
) -> Result<(), Error> {
let two_hours_in_the_future = now
.checked_add_signed(Duration::hours(2))
.ok_or("overflow when calculating 2 hours in the future")?;
if block_header_time <= two_hours_in_the_future {
Ok(())
} else {
Err("block header time is more than 2 hours in the future".into())
}
}
/// Check if the block header time is less than or equal to /// Check if the block header time is less than or equal to
/// 2 hours in the future, according to the node's local clock. /// 2 hours in the future, according to the node's local clock.
/// ///
@ -55,16 +71,7 @@ mod block {
/// ///
/// [7.5]: https://zips.z.cash/protocol/protocol.pdf#blockheader /// [7.5]: https://zips.z.cash/protocol/protocol.pdf#blockheader
pub(super) fn node_time_check(block: Arc<Block>) -> Result<(), Error> { pub(super) fn node_time_check(block: Arc<Block>) -> Result<(), Error> {
let now = Utc::now(); node_time_check_helper(block.header.time, Utc::now())
let two_hours_in_the_future = now
.checked_add_signed(Duration::hours(2))
.ok_or("overflow when calculating 2 hours in the future")?;
if block.header.time <= two_hours_in_the_future {
Ok(())
} else {
Err("block header time is more than 2 hours in the future".into())
}
} }
} }