From e047fcf421efe2d17982dbc2877235f3c38ad5f3 Mon Sep 17 00:00:00 2001 From: Oleg Kovalov Date: Tue, 22 Oct 2024 17:46:28 +0200 Subject: [PATCH] !chore: drop DefaultHeightThreshold --- verify.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/verify.go b/verify.go index 5ec19538..53312755 100644 --- a/verify.go +++ b/verify.go @@ -6,10 +6,6 @@ import ( "time" ) -// DefaultHeightThreshold defines default height threshold beyond which headers are rejected -// NOTE: Compared against subjective head which is guaranteed to be non-expired -const DefaultHeightThreshold uint64 = 80000 // ~ 14 days of 15 second headers - // Verify verifies untrusted Header against trusted following general Header checks and // custom user-specific checks defined in Header.Verify. //