From 58a2cc6ad605d9cdd350b3d23461bb08e952d11d Mon Sep 17 00:00:00 2001 From: Oleg Kovalov Date: Tue, 22 Oct 2024 22:36:32 +0200 Subject: [PATCH] !chore: drop DefaultHeightThreshold (#221) Leftover after https://github.com/celestiaorg/go-header/pull/216 --- 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. //