Documentation ¶
Index ¶
- Variables
- func SeedHash(block uint64) []byte
- type API
- type Config
- type Mode
- type Progpow
- func (progpow *Progpow) APIs(chain consensus.ChainHeaderReader) []rpc.API
- func (progpow *Progpow) Author(header *types.Header) (common.Address, error)
- func (progpow *Progpow) CalcDifficulty(chain consensus.ChainHeaderReader, parent *types.Header) *big.Int
- func (progpow *Progpow) CalcOrder(header *types.Header) (*big.Int, int, error)
- func (progpow *Progpow) Close() error
- func (progpow *Progpow) ComputePowLight(header *types.Header) (mixHash, powHash common.Hash)
- func (progpow *Progpow) DeltaLogS(header *types.Header) *big.Int
- func (progpow *Progpow) Finalize(chain consensus.ChainHeaderReader, header *types.Header, state *state.StateDB, ...)
- func (progpow *Progpow) FinalizeAndAssemble(chain consensus.ChainHeaderReader, header *types.Header, state *state.StateDB, ...) (*types.Block, error)
- func (progpow *Progpow) Hashrate() float64
- func (progpow *Progpow) IntrinsicLogS(powHash common.Hash) *big.Int
- func (progpow *Progpow) IsDomCoincident(chain consensus.ChainHeaderReader, header *types.Header) bool
- func (progpow *Progpow) Prepare(chain consensus.ChainHeaderReader, header *types.Header, parent *types.Header) error
- func (progpow *Progpow) Seal(header *types.Header, results chan<- *types.Header, stop <-chan struct{}) error
- func (progpow *Progpow) SetThreads(threads int)
- func (progpow *Progpow) SubmitHashrate(rate hexutil.Uint64, id common.Hash) bool
- func (progpow *Progpow) Threads() int
- func (progpow *Progpow) TotalLogPhS(header *types.Header) *big.Int
- func (progpow *Progpow) TotalLogS(header *types.Header) *big.Int
- func (progpow *Progpow) VerifyHeader(chain consensus.ChainHeaderReader, header *types.Header) error
- func (progpow *Progpow) VerifyHeaders(chain consensus.ChainHeaderReader, headers []*types.Header) (chan<- struct{}, <-chan error)
- func (progpow *Progpow) VerifyUncles(chain consensus.ChainReader, block *types.Block) error
Constants ¶
This section is empty.
Variables ¶
var ( ContextTimeFactor = big10 ZoneBlockReward = big.NewInt(5e+18) RegionBlockReward = new(big.Int).Mul(ZoneBlockReward, big3) PrimeBlockReward = new(big.Int).Mul(RegionBlockReward, big3) )
Progpow proof-of-work protocol constants.
var ErrInvalidDumpMagic = errors.New("invalid dump magic")
Functions ¶
Types ¶
type API ¶
type API struct {
// contains filtered or unexported fields
}
API exposes progpow related methods for the RPC interface.
func (*API) GetWork ¶
GetWork returns a work package for external miner.
The work package consists of 3 strings:
result[0] - 32 bytes hex encoded current block header pow-hash result[1] - 32 bytes hex encoded seed hash used for DAG result[2] - 32 bytes hex encoded boundary condition ("target"), 2^256/difficulty result[3] - hex encoded block number
func (*API) Gprogpowrate ¶
Gprogpowrate returns the current hashrate for local CPU miner and remote miner.
func (*API) SubmitHashrate ¶
SubmitHashrate can be used for remote miners to submit their hash rate. This enables the node to report the combined hash rate of all miners which submit work through this node.
It accepts the miner hash rate and an identifier which must be unique between nodes.
func (*API) SubmitWork ¶
SubmitWork can be used by external miner to submit their POW solution. It returns an indication if the work was accepted. Note either an invalid solution, a stale work a non-existent work will return false.
type Config ¶
type Config struct { PowMode Mode CacheDir string CachesInMem int CachesOnDisk int CachesLockMmap bool DurationLimit *big.Int GasCeil uint64 // When set, notifications sent by the remote sealer will // be block header JSON objects instead of work package arrays. NotifyFull bool Log *log.Logger `toml:"-"` }
Config are the configuration parameters of the progpow.
type Mode ¶
type Mode uint
Mode defines the type and amount of PoW verification a progpow engine makes.
type Progpow ¶
type Progpow struct {
// contains filtered or unexported fields
}
Progpow is a proof-of-work consensus engine using the blake3 hash algorithm
func New ¶
New creates a full sized progpow PoW scheme and starts a background thread for remote mining, also optionally notifying a batch of remote services of new work packages.
func NewFakeDelayer ¶
NewFakeDelayer creates a progpow consensus engine with a fake PoW scheme that accepts all blocks as valid, but delays verifications by some time, though they still have to conform to the Quai consensus rules.
func NewFakeFailer ¶
NewFakeFailer creates a progpow consensus engine with a fake PoW scheme that accepts all blocks as valid apart from the single one specified, though they still have to conform to the Quai consensus rules.
func NewFaker ¶
func NewFaker() *Progpow
NewFaker creates a progpow consensus engine with a fake PoW scheme that accepts all blocks' seal as valid, though they still have to conform to the Quai consensus rules.
func NewFullFaker ¶
func NewFullFaker() *Progpow
NewFullFaker creates an progpow consensus engine with a full fake scheme that accepts all blocks as valid, without checking any consensus rules whatsoever.
func NewShared ¶
func NewShared() *Progpow
NewShared creates a full sized progpow PoW shared between all requesters running in the same process.
func NewTester ¶
NewTester creates a small sized progpow PoW scheme useful only for testing purposes.
func (*Progpow) APIs ¶
func (progpow *Progpow) APIs(chain consensus.ChainHeaderReader) []rpc.API
APIs implements consensus.Engine, returning the user facing RPC APIs.
func (*Progpow) Author ¶
Author implements consensus.Engine, returning the header's coinbase as the proof-of-work verified author of the block.
func (*Progpow) CalcDifficulty ¶
func (progpow *Progpow) CalcDifficulty(chain consensus.ChainHeaderReader, parent *types.Header) *big.Int
CalcDifficulty is the difficulty adjustment algorithm. It returns the difficulty that a new block should have when created at time given the parent block's time and difficulty.
func (*Progpow) ComputePowLight ¶
func (*Progpow) Finalize ¶
func (progpow *Progpow) Finalize(chain consensus.ChainHeaderReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header)
Finalize implements consensus.Engine, accumulating the block and uncle rewards, setting the final state on the header
func (*Progpow) FinalizeAndAssemble ¶
func (progpow *Progpow) FinalizeAndAssemble(chain consensus.ChainHeaderReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header, etxs []*types.Transaction, subManifest types.BlockManifest, receipts []*types.Receipt) (*types.Block, error)
FinalizeAndAssemble implements consensus.Engine, accumulating the block and uncle rewards, setting the final state and assembling the block.
func (*Progpow) Hashrate ¶
Hashrate implements PoW, returning the measured rate of the search invocations per second over the last minute. Note the returned hashrate includes local hashrate, but also includes the total hashrate of all remote miner.
func (*Progpow) IntrinsicLogS ¶
IntrinsicLogS returns the logarithm of the intrinsic entropy reduction of a PoW hash
func (*Progpow) IsDomCoincident ¶
func (*Progpow) Prepare ¶
func (progpow *Progpow) Prepare(chain consensus.ChainHeaderReader, header *types.Header, parent *types.Header) error
Prepare implements consensus.Engine, initializing the difficulty field of a header to conform to the progpow protocol. The changes are done inline.
func (*Progpow) Seal ¶
func (progpow *Progpow) Seal(header *types.Header, results chan<- *types.Header, stop <-chan struct{}) error
Seal implements consensus.Engine, attempting to find a nonce that satisfies the header's difficulty requirements.
func (*Progpow) SetThreads ¶
SetThreads updates the number of mining threads currently enabled. Calling this method does not start mining, only sets the thread count. If zero is specified, the miner will use all cores of the machine. Setting a thread count below zero is allowed and will cause the miner to idle, without any work being done.
func (*Progpow) SubmitHashrate ¶
SubmitHashrate can be used for remote miners to submit their hash rate. This enables the node to report the combined hash rate of all miners which submit work through this node.
It accepts the miner hash rate and an identifier which must be unique between nodes.
func (*Progpow) Threads ¶
Threads returns the number of mining threads currently enabled. This doesn't necessarily mean that mining is running!
func (*Progpow) TotalLogS ¶
TotalLogS() returns the total entropy reduction if the chain since genesis to the given header
func (*Progpow) VerifyHeader ¶
VerifyHeader checks whether a header conforms to the consensus rules of the stock Quai progpow engine.
func (*Progpow) VerifyHeaders ¶
func (progpow *Progpow) VerifyHeaders(chain consensus.ChainHeaderReader, headers []*types.Header) (chan<- struct{}, <-chan error)
VerifyHeaders is similar to VerifyHeader, but verifies a batch of headers concurrently. The method returns a quit channel to abort the operations and a results channel to retrieve the async verifications.
func (*Progpow) VerifyUncles ¶
VerifyUncles verifies that the given block's uncles conform to the consensus rules of the stock Quai progpow engine.