mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 22:57:16 +00:00
17c07c50a5
* debug * debug * it works * rename clique bucket * remove genesis special case * copy snapshot * remove debug * migration * debug * regenerate snapshots * simplify * regeneration * after merge * tests Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
33 lines
740 B
Go
33 lines
740 B
Go
package clique
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
|
)
|
|
|
|
// SnapshotFullKey = SnapshotBucket + num (uint64 big endian) + hash
|
|
func SnapshotFullKey(number uint64, hash common.Hash) []byte {
|
|
return append(EncodeBlockNumber(number), hash.Bytes()...)
|
|
}
|
|
|
|
// SnapshotKey = SnapshotBucket + num (uint64 big endian)
|
|
func SnapshotKey(number uint64) []byte {
|
|
return EncodeBlockNumber(number)
|
|
}
|
|
|
|
// SnapshotKey = SnapshotBucket + '0'
|
|
func LastSnapshotKey() []byte {
|
|
return []byte{0}
|
|
}
|
|
|
|
const NumberLength = 8
|
|
|
|
// EncodeBlockNumber encodes a block number as big endian uint64
|
|
func EncodeBlockNumber(number uint64) []byte {
|
|
enc := make([]byte, NumberLength)
|
|
binary.BigEndian.PutUint64(enc, number)
|
|
return enc
|
|
}
|
|
|