commit 1d4dd7a0dc472ff3839768992fea49e66c452df9
parent d7338c7a3d11b69e720fd643de0ca0963b92fc5b
Author: alltheseas <alltheseas@users.noreply.github.com>
Date: Thu, 20 Nov 2025 14:37:03 -0600
Run cargo fmt
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/notedeck/src/time.rs b/crates/notedeck/src/time.rs
@@ -11,7 +11,7 @@ const ONE_MONTH_IN_SECONDS: u64 = 2_592_000; // 30 days
const ONE_YEAR_IN_SECONDS: u64 = 31_536_000; // 365 days
/// Maximum tolerated skew for note timestamps in the future (2 minutes / 120 seconds).
-pub const MAX_FUTURE_NOTE_SKEW_SECS: u64 = 2*ONE_MINUTE_IN_SECONDS;
+pub const MAX_FUTURE_NOTE_SKEW_SECS: u64 = 2 * ONE_MINUTE_IN_SECONDS;
/// Returns the current UNIX timestamp in seconds.
pub fn unix_time_secs() -> u64 {