consensus/monero/block/func.go
DataHoarder a039820b20
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
P2Pool consensus v3.0
Migrate cmd utils, cmds to own repository
2024-04-03 19:32:34 +02:00

11 lines
326 B
Go

package block
import (
"git.gammaspectra.live/P2Pool/consensus/types"
)
type GetDifficultyByHeightFunc func(height uint64) types.Difficulty
type GetSeedByHeightFunc func(height uint64) (hash types.Hash)
type GetBlockHeaderByHashFunc func(hash types.Hash) *Header
type GetBlockHeaderByHeightFunc func(height uint64) *Header