github.com/electroneum/electroneum-sc@v0.0.0-20230105223411-3bc1d078281e/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 23 "github.com/electroneum/electroneum-sc/common" 24 "github.com/electroneum/electroneum-sc/core/state" 25 "github.com/electroneum/electroneum-sc/core/types" 26 "github.com/electroneum/electroneum-sc/ethdb" 27 "github.com/electroneum/electroneum-sc/p2p" 28 "github.com/electroneum/electroneum-sc/params" 29 "github.com/electroneum/electroneum-sc/rpc" 30 ) 31 32 // ChainHeaderReader defines a small collection of methods needed to access the local 33 // blockchain during header verification. 34 type ChainHeaderReader interface { 35 // Config retrieves the blockchain's chain configuration. 36 Config() *params.ChainConfig 37 38 // CurrentHeader retrieves the current header from the local chain. 39 CurrentHeader() *types.Header 40 41 // GetHeader retrieves a block header from the database by hash and number. 42 GetHeader(hash common.Hash, number uint64) *types.Header 43 44 // GetHeaderByNumber retrieves a block header from the database by number. 45 GetHeaderByNumber(number uint64) *types.Header 46 47 // GetHeaderByHash retrieves a block header from the database by its hash. 48 GetHeaderByHash(hash common.Hash) *types.Header 49 50 // GetTd retrieves the total difficulty from the database by hash and number. 51 GetTd(hash common.Hash, number uint64) *big.Int 52 } 53 54 // ChainReader defines a small collection of methods needed to access the local 55 // blockchain during header and/or uncle verification. 56 type ChainReader interface { 57 ChainHeaderReader 58 59 // GetBlock retrieves a block from the database by hash and number. 60 GetBlock(hash common.Hash, number uint64) *types.Block 61 } 62 63 // Engine is an algorithm agnostic consensus engine. 64 type Engine interface { 65 // Author retrieves the Ethereum address of the account that minted the given 66 // block, which may be different from the header's coinbase if a consensus 67 // engine is based on signatures. 68 Author(header *types.Header) (common.Address, error) 69 70 // VerifyHeader checks whether a header conforms to the consensus rules of a 71 // given engine. Verifying the seal may be done optionally here, or explicitly 72 // via the VerifySeal method. 73 VerifyHeader(chain ChainHeaderReader, header *types.Header, seal bool) error 74 75 // VerifyHeaders is similar to VerifyHeader, but verifies a batch of headers 76 // concurrently. The method returns a quit channel to abort the operations and 77 // a results channel to retrieve the async verifications (the order is that of 78 // the input slice). 79 VerifyHeaders(chain ChainHeaderReader, headers []*types.Header, seals []bool) (chan<- struct{}, <-chan error) 80 81 // VerifyUncles verifies that the given block's uncles conform to the consensus 82 // rules of a given engine. 83 VerifyUncles(chain ChainReader, block *types.Block) error 84 85 // Prepare initializes the consensus fields of a block header according to the 86 // rules of a particular engine. The changes are executed inline. 87 Prepare(chain ChainHeaderReader, header *types.Header) error 88 89 // Finalize runs any post-transaction state modifications (e.g. block rewards) 90 // but does not assemble the block. 91 // 92 // Note: The block header and state database might be updated to reflect any 93 // consensus rules that happen at finalization (e.g. block rewards). 94 Finalize(chain ChainHeaderReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, 95 uncles []*types.Header) 96 97 // FinalizeAndAssemble runs any post-transaction state modifications (e.g. block 98 // rewards) and assembles the final block. 99 // 100 // Note: The block header and state database might be updated to reflect any 101 // consensus rules that happen at finalization (e.g. block rewards). 102 FinalizeAndAssemble(chain ChainHeaderReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, 103 uncles []*types.Header, receipts []*types.Receipt) (*types.Block, error) 104 105 // Seal generates a new sealing request for the given input block and pushes 106 // the result into the given channel. 107 // 108 // Note, the method returns immediately and will send the result async. More 109 // than one result may also be returned depending on the consensus algorithm. 110 Seal(chain ChainHeaderReader, block *types.Block, results chan<- *types.Block, stop <-chan struct{}) error 111 112 // SealHash returns the hash of a block prior to it being sealed. 113 SealHash(header *types.Header) common.Hash 114 115 // CalcDifficulty is the difficulty adjustment algorithm. It returns the difficulty 116 // that a new block should have. 117 CalcDifficulty(chain ChainHeaderReader, time uint64, parent *types.Header) *big.Int 118 119 // APIs returns the RPC APIs this consensus engine provides. 120 APIs(chain ChainHeaderReader) []rpc.API 121 122 // Protocol returns the protocol for this consensus 123 Protocol() Protocol 124 125 // Close terminates any background threads maintained by the consensus engine. 126 Close() error 127 } 128 129 // Handler should be implemented is the consensus needs to handle and send peer's message 130 type Handler interface { 131 // NewChainHead handles a new head block comes 132 NewChainHead() error 133 134 // HandleMsg handles a message from peer 135 HandleMsg(address common.Address, data p2p.Msg) (bool, error) 136 137 // SetBroadcaster sets the broadcaster to send message to peers 138 SetBroadcaster(Broadcaster) 139 } 140 141 // PoW is a consensus engine based on proof-of-work. 142 type PoW interface { 143 Engine 144 145 // Hashrate returns the current mining hashrate of a PoW consensus engine. 146 Hashrate() float64 147 } 148 149 // Istanbul is a consensus engine to avoid byzantine failure 150 type Istanbul interface { 151 Engine 152 153 // Start starts the engine 154 Start(chain ChainHeaderReader, currentBlock func() *types.Block, hasBadBlock func(db ethdb.Reader, hash common.Hash) bool) error 155 156 // Stop stops the engine 157 Stop() error 158 }