X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fconfig.rs;h=ffbfb45bbeb4d1f1fbe628de18cd377413271064;hb=60ad4958a2144b229ed09359afbb3711c192053b;hp=acf7ac98a1956ffdb71459a4b278e776ba7a8435;hpb=30ded89530e432c026308c536386cb8c8a4d6774;p=rapid-gossip-sync-server diff --git a/src/config.rs b/src/config.rs index acf7ac9..ffbfb45 100644 --- a/src/config.rs +++ b/src/config.rs @@ -4,6 +4,7 @@ use std::convert::TryInto; use std::env; use std::io::Cursor; use std::net::{SocketAddr, ToSocketAddrs}; +use std::time::Duration; use bitcoin::Network; use bitcoin::hashes::hex::FromHex; @@ -19,7 +20,7 @@ pub(crate) const SNAPSHOT_CALCULATION_INTERVAL: u32 = 3600 * 24; // every 24 hou /// If the last update in either direction was more than six days ago, we send a reminder /// That reminder may be either in the form of a channel announcement, or in the form of empty /// updates in both directions. -pub(crate) const CHANNEL_REMINDER_AGE: u32 = 6 * 24 * 3600; +pub(crate) const CHANNEL_REMINDER_AGE: Duration = Duration::from_secs(6 * 24 * 60 * 60); pub(crate) const DOWNLOAD_NEW_GOSSIP: bool = true; pub(crate) fn network() -> Network {