mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Add feature calculate reward for signers at checkpoint block.
This commit is contained in:
parent
2085e02f2c
commit
0d59fa3408
3 changed files with 57 additions and 13 deletions
|
|
@ -105,7 +105,7 @@ func (w *wizard) makeGenesis() {
|
||||||
|
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
fmt.Println("How many blocks per checkpoint? (default = 990)")
|
fmt.Println("How many blocks per checkpoint? (default = 990)")
|
||||||
genesis.Config.Clique.Epoch = uint64(w.readDefaultInt(990))
|
genesis.Config.Clique.Checkpoint = uint64(w.readDefaultInt(990))
|
||||||
|
|
||||||
default:
|
default:
|
||||||
log.Crit("Invalid consensus engine choice", "choice", choice)
|
log.Crit("Invalid consensus engine choice", "choice", choice)
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,7 @@ import (
|
||||||
"github.com/ethereum/go-ethereum/rlp"
|
"github.com/ethereum/go-ethereum/rlp"
|
||||||
"github.com/ethereum/go-ethereum/rpc"
|
"github.com/ethereum/go-ethereum/rpc"
|
||||||
"github.com/hashicorp/golang-lru"
|
"github.com/hashicorp/golang-lru"
|
||||||
|
"encoding/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
@ -605,18 +606,8 @@ func (c *Clique) Prepare(chain consensus.ChainReader, header *types.Header) erro
|
||||||
func (c *Clique) Finalize(chain consensus.ChainReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header, receipts []*types.Receipt) (*types.Block, error) {
|
func (c *Clique) Finalize(chain consensus.ChainReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header, receipts []*types.Receipt) (*types.Block, error) {
|
||||||
// set block reward
|
// set block reward
|
||||||
// FIXME: unit Ether could be too plump
|
// FIXME: unit Ether could be too plump
|
||||||
parentHeader := chain.GetHeaderByHash(header.ParentHash)
|
if err := c.accumulateRewards(chain, state, header); err != nil {
|
||||||
if (parentHeader.Number.Uint64() > 0) {
|
return nil, err
|
||||||
chainReward := new(big.Int).SetUint64(chain.Config().Clique.Reward * params.Ether)
|
|
||||||
// Not reward for singer of genesis block.
|
|
||||||
reward := new(big.Int).Set(chainReward)
|
|
||||||
|
|
||||||
parentSigner, err := ecrecover(parentHeader, c.signatures)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
state.AddBalance(parentSigner, reward)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// No block rewards in PoA, so the state remains as is and uncles are dropped
|
// No block rewards in PoA, so the state remains as is and uncles are dropped
|
||||||
|
|
@ -732,3 +723,55 @@ func (c *Clique) APIs(chain consensus.ChainReader) []rpc.API {
|
||||||
Public: false,
|
Public: false,
|
||||||
}}
|
}}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Clique) accumulateRewards(chain consensus.ChainReader, state *state.StateDB, header *types.Header) (error) {
|
||||||
|
type rewardLog struct {
|
||||||
|
Sign uint64 `json:"sign"`
|
||||||
|
Reward float64 `json:"reward"`
|
||||||
|
}
|
||||||
|
|
||||||
|
number := header.Number.Uint64()
|
||||||
|
checkpoint := chain.Config().Clique.Checkpoint
|
||||||
|
|
||||||
|
if number > 0 && number%checkpoint == 0 {
|
||||||
|
// Not reward for singer of genesis block and only calculate reward at checkpoint block.
|
||||||
|
parentHeader := chain.GetHeaderByHash(header.ParentHash)
|
||||||
|
startBlockNumber := number - checkpoint + 1
|
||||||
|
endBlockNumber := parentHeader.Number.Uint64()
|
||||||
|
signers := make(map[common.Address]*rewardLog)
|
||||||
|
totalSigner := uint64(0)
|
||||||
|
|
||||||
|
for i := startBlockNumber; i <= endBlockNumber; i++ {
|
||||||
|
blockHeader := chain.GetHeaderByNumber(i)
|
||||||
|
if signer, err := ecrecover(blockHeader, c.signatures); err != nil {
|
||||||
|
return err
|
||||||
|
} else {
|
||||||
|
_, exist := signers[signer]
|
||||||
|
if exist {
|
||||||
|
signers[signer].Sign++
|
||||||
|
} else {
|
||||||
|
signers[signer] = &rewardLog{1, 0}
|
||||||
|
}
|
||||||
|
totalSigner++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
chainReward := new(big.Int).SetUint64(chain.Config().Clique.Reward * params.Ether)
|
||||||
|
// Update balance reward.
|
||||||
|
calcReward := new(big.Int)
|
||||||
|
for signer, log := range signers {
|
||||||
|
calcReward.Mul(chainReward, new(big.Int).SetUint64(log.Sign))
|
||||||
|
calcReward.Div(calcReward, new(big.Int).SetUint64(totalSigner))
|
||||||
|
log.Reward = float64(calcReward.Int64())
|
||||||
|
|
||||||
|
state.AddBalance(signer, calcReward)
|
||||||
|
}
|
||||||
|
jsonSigners, err := json.Marshal(signers)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
log.Info("TOMO - Calculate reward at checkpoint", "startBlock", startBlockNumber, "endBlock", endBlockNumber, "signers", string(jsonSigners), "totalSigner", totalSigner, "totalReward", chainReward)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -136,6 +136,7 @@ type CliqueConfig struct {
|
||||||
Period uint64 `json:"period"` // Number of seconds between blocks to enforce
|
Period uint64 `json:"period"` // Number of seconds between blocks to enforce
|
||||||
Epoch uint64 `json:"epoch"` // Epoch length to reset votes and checkpoint
|
Epoch uint64 `json:"epoch"` // Epoch length to reset votes and checkpoint
|
||||||
Reward uint64 `json:"reward"` // Block reward - unit Ether
|
Reward uint64 `json:"reward"` // Block reward - unit Ether
|
||||||
|
Checkpoint uint64 `json:"checkpoint"` // Checkpoint block for calculate rewards.
|
||||||
}
|
}
|
||||||
|
|
||||||
// String implements the stringer interface, returning the consensus engine details.
|
// String implements the stringer interface, returning the consensus engine details.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue