mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 14:58:46 +00:00
b9a233da7d
* beginning epoch processing helper funcs * renamed helpers to under epoch_operations * implemented AttestingValidatorIndices * deleted old epoch_processing.go file * implemented WinningRoot & LowerThan helper funcs * rest of the epoch helpers * gazelle * added tests * merged * mentioned LowerThan is for big endian format * fixed spelling
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
// Package bytes defines helper methods for converting integers to byte slices.
|
|
package bytes
|
|
|
|
import (
|
|
"encoding/binary"
|
|
)
|
|
|
|
// Bytes1 returns integer x to bytes in big-endian format, x.to_bytes(1, 'big').
|
|
func Bytes1(x uint64) []byte {
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, x)
|
|
return bytes[7:]
|
|
}
|
|
|
|
// Bytes2 returns integer x to bytes in big-endian format, x.to_bytes(2, 'big').
|
|
func Bytes2(x uint64) []byte {
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, x)
|
|
return bytes[6:]
|
|
}
|
|
|
|
// Bytes3 returns integer x to bytes in big-endian format, x.to_bytes(3, 'big').
|
|
func Bytes3(x uint64) []byte {
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, x)
|
|
return bytes[5:]
|
|
}
|
|
|
|
// Bytes4 returns integer x to bytes in big-endian format, x.to_bytes(4, 'big').
|
|
func Bytes4(x uint64) []byte {
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, x)
|
|
return bytes[4:]
|
|
}
|
|
|
|
// Bytes8 returns integer x to bytes in big-endian format, x.to_bytes(8, 'big').
|
|
func Bytes8(x uint64) []byte {
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, x)
|
|
return bytes
|
|
}
|
|
|
|
// FromBytes8 returns an integer which is stored in the big-endian format(8, 'big')
|
|
// from a byte array.
|
|
func FromBytes8(x []byte) uint64 {
|
|
return binary.BigEndian.Uint64(x)
|
|
}
|
|
|
|
// LowerThan returns true if byte slice x is lower than byte slice y. (big endian format)
|
|
// This is used in spec to compare winning block root hash.
|
|
// Mentioned in spec as "ties broken by favoring lower `shard_block_root` values".
|
|
func LowerThan(x []byte, y []byte) bool {
|
|
for i, b := range x {
|
|
if b > y[i] {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|