From 9094bcde02c2872fd459a18264600ef6d67816a0 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Tue, 29 Oct 2013 11:02:30 -0400 Subject: [PATCH] Remove unused const. --- log.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/log.go b/log.go index 484a70b..104ebdf 100644 --- a/log.go +++ b/log.go @@ -22,15 +22,6 @@ import ( "os" ) -const ( - // lockTimeThreshold is the number below which a lock time is - // interpreted to be a block number. Since an average of one block - // is generated per 10 minutes, this allows blocks for about 9,512 - // years. However, if the field is interpreted as a timestamp, given - // the lock time is a uint32, the max is sometime around 2106. - lockTimeThreshold uint32 = 5e8 // Tue Nov 5 00:53:20 1985 UTC -) - var ( log = seelog.Disabled )