Remove fork date

This commit is contained in:
DataHoarder 2023-03-20 09:08:26 +01:00
parent 8ee16e6d53
commit 42001a10d4
Signed by: DataHoarder
SSH key fingerprint: SHA256:EnPQOqPpbCa7nzalCEJY2sd9iPluFIBuJu2rDFalACI

View file

@ -14,6 +14,7 @@ import (
"git.gammaspectra.live/P2Pool/p2pool-observer/types" "git.gammaspectra.live/P2Pool/p2pool-observer/types"
"io" "io"
"log" "log"
"math"
"sync" "sync"
"sync/atomic" "sync/atomic"
"unsafe" "unsafe"
@ -47,8 +48,8 @@ const (
ShareVersion_V2 ShareVersion = 2 ShareVersion_V2 ShareVersion = 2
) )
const ShareVersion_V2MainNetTimestamp uint64 = 1679173200 // 2023-03-18 21:00 UTC const ShareVersion_V2MainNetTimestamp uint64 = math.MaxUint64
const ShareVersion_V2TestNetTimestamp uint64 = 1674507600 // 2023-01-23 21:00 UTC const ShareVersion_V2TestNetTimestamp uint64 = math.MaxUint64
type PoolBlock struct { type PoolBlock struct {
Main mainblock.Block Main mainblock.Block