github.com/phillinzzz/newBsc@v1.1.6/consensus/consensus.go (about) 1 // Copyright 2017 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 // Package consensus implements different Ethereum consensus engines. 18 package consensus 19 20 import ( 21 "math/big" 22 "time" 23 24 "github.com/phillinzzz/newBsc/common" 25 "github.com/phillinzzz/newBsc/core/state" 26 "github.com/phillinzzz/newBsc/core/types" 27 "github.com/phillinzzz/newBsc/params" 28 "github.com/phillinzzz/newBsc/rpc" 29 ) 30 31 var ( 32 SystemAddress = common.HexToAddress("0xffffFFFfFFffffffffffffffFfFFFfffFFFfFFfE") 33 ) 34 35 // ChainHeaderReader defines a small collection of methods needed to access the local 36 // blockchain during header verification. 37 type ChainHeaderReader interface { 38 // Config retrieves the blockchain's chain configuration. 39 Config() *params.ChainConfig 40 41 // CurrentHeader retrieves the current header from the local chain. 42 CurrentHeader() *types.Header 43 44 // GetHeader retrieves a block header from the database by hash and number. 45 GetHeader(hash common.Hash, number uint64) *types.Header 46 47 // GetHeaderByNumber retrieves a block header from the database by number. 48 GetHeaderByNumber(number uint64) *types.Header 49 50 // GetHeaderByHash retrieves a block header from the database by its hash. 51 GetHeaderByHash(hash common.Hash) *types.Header 52 53 // GetHighestVerifiedHeader retrieves the highest header verified. 54 GetHighestVerifiedHeader() *types.Header 55 } 56 57 // ChainReader defines a small collection of methods needed to access the local 58 // blockchain during header and/or uncle verification. 59 type ChainReader interface { 60 ChainHeaderReader 61 62 // GetBlock retrieves a block from the database by hash and number. 63 GetBlock(hash common.Hash, number uint64) *types.Block 64 } 65 66 // Engine is an algorithm agnostic consensus engine. 67 type Engine interface { 68 // Author retrieves the Ethereum address of the account that minted the given 69 // block, which may be different from the header's coinbase if a consensus 70 // engine is based on signatures. 71 Author(header *types.Header) (common.Address, error) 72 73 // VerifyHeader checks whether a header conforms to the consensus rules of a 74 // given engine. Verifying the seal may be done optionally here, or explicitly 75 // via the VerifySeal method. 76 VerifyHeader(chain ChainHeaderReader, header *types.Header, seal bool) error 77 78 // VerifyHeaders is similar to VerifyHeader, but verifies a batch of headers 79 // concurrently. The method returns a quit channel to abort the operations and 80 // a results channel to retrieve the async verifications (the order is that of 81 // the input slice). 82 VerifyHeaders(chain ChainHeaderReader, headers []*types.Header, seals []bool) (chan<- struct{}, <-chan error) 83 84 // VerifyUncles verifies that the given block's uncles conform to the consensus 85 // rules of a given engine. 86 VerifyUncles(chain ChainReader, block *types.Block) error 87 88 // Prepare initializes the consensus fields of a block header according to the 89 // rules of a particular engine. The changes are executed inline. 90 Prepare(chain ChainHeaderReader, header *types.Header) error 91 92 // Finalize runs any post-transaction state modifications (e.g. block rewards) 93 // but does not assemble the block. 94 // 95 // Note: The block header and state database might be updated to reflect any 96 // consensus rules that happen at finalization (e.g. block rewards). 97 Finalize(chain ChainHeaderReader, header *types.Header, state *state.StateDB, txs *[]*types.Transaction, 98 uncles []*types.Header, receipts *[]*types.Receipt, systemTxs *[]*types.Transaction, usedGas *uint64) error 99 100 // FinalizeAndAssemble runs any post-transaction state modifications (e.g. block 101 // rewards) and assembles the final block. 102 // 103 // Note: The block header and state database might be updated to reflect any 104 // consensus rules that happen at finalization (e.g. block rewards). 105 FinalizeAndAssemble(chain ChainHeaderReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, 106 uncles []*types.Header, receipts []*types.Receipt) (*types.Block, []*types.Receipt, error) 107 108 // Seal generates a new sealing request for the given input block and pushes 109 // the result into the given channel. 110 // 111 // Note, the method returns immediately and will send the result async. More 112 // than one result may also be returned depending on the consensus algorithm. 113 Seal(chain ChainHeaderReader, block *types.Block, results chan<- *types.Block, stop <-chan struct{}) error 114 115 // SealHash returns the hash of a block prior to it being sealed. 116 SealHash(header *types.Header) common.Hash 117 118 // CalcDifficulty is the difficulty adjustment algorithm. It returns the difficulty 119 // that a new block should have. 120 CalcDifficulty(chain ChainHeaderReader, time uint64, parent *types.Header) *big.Int 121 122 // APIs returns the RPC APIs this consensus engine provides. 123 APIs(chain ChainHeaderReader) []rpc.API 124 125 // Delay returns the max duration the miner can commit txs 126 Delay(chain ChainReader, header *types.Header) *time.Duration 127 128 // Close terminates any background threads maintained by the consensus engine. 129 Close() error 130 } 131 132 // PoW is a consensus engine based on proof-of-work. 133 type PoW interface { 134 Engine 135 136 // Hashrate returns the current mining hashrate of a PoW consensus engine. 137 Hashrate() float64 138 } 139 140 type PoSA interface { 141 Engine 142 143 IsSystemTransaction(tx *types.Transaction, header *types.Header) (bool, error) 144 IsSystemContract(to *common.Address) bool 145 EnoughDistance(chain ChainReader, header *types.Header) bool 146 IsLocalBlock(header *types.Header) bool 147 AllowLightProcess(chain ChainReader, currentHeader *types.Header) bool 148 }