Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Increase allowed time drift to 10s. (#7238)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomusdrw committed Dec 8, 2017
1 parent a05c90a commit 77ee23b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapps/node-health/src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const UPDATE_TIMEOUT_ERR_SECS: u64 = 60;
const UPDATE_TIMEOUT_INCOMPLETE_SECS: u64 = 10;

/// Maximal valid time drift.
pub const MAX_DRIFT: i64 = 500;
pub const MAX_DRIFT: i64 = 10_000;

type BoxFuture<A, B> = Box<Future<Item = A, Error = B> + Send>;

Expand Down

0 comments on commit 77ee23b

Please sign in to comment.