mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
068463dff4
* Store transactions individually * Store transactions individually * save progress * checkIndex * merge
91 lines
2.7 KiB
Go
91 lines
2.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/common/hexutil"
|
|
"github.com/ledgerwatch/turbo-geth/consensus/ethash"
|
|
"github.com/ledgerwatch/turbo-geth/core/rawdb"
|
|
"github.com/ledgerwatch/turbo-geth/core/types"
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
"github.com/ledgerwatch/turbo-geth/rpc"
|
|
)
|
|
|
|
// BlockReward returns the block reward for this block
|
|
// func (api *TgImpl) BlockReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
|
|
// tx, err := api.dbReader.Begin(ctx, ethdb.RO)
|
|
// if err != nil {
|
|
// return Issuance{}, err
|
|
// }
|
|
// defer tx.Rollback()
|
|
//
|
|
// return api.rewardCalc(tx, blockNr, "block") // nolint goconst
|
|
//}
|
|
|
|
// UncleReward returns the uncle reward for this block
|
|
// func (api *TgImpl) UncleReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
|
|
// tx, err := api.dbReader.Begin(ctx, ethdb.RO)
|
|
// if err != nil {
|
|
// return Issuance{}, err
|
|
// }
|
|
// defer tx.Rollback()
|
|
//
|
|
// return api.rewardCalc(tx, blockNr, "uncle") // nolint goconst
|
|
//}
|
|
|
|
// Issuance implements tg_issuance. Returns the total issuance (block reward plus uncle reward) for the given block.
|
|
func (api *TgImpl) Issuance(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
|
|
tx, err := api.dbReader.Begin(ctx, ethdb.RO)
|
|
if err != nil {
|
|
return Issuance{}, err
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
genesis, err := rawdb.ReadBlockByNumber(tx, 0)
|
|
if err != nil {
|
|
return Issuance{}, err
|
|
}
|
|
genesisHash := genesis.Hash()
|
|
chainConfig, err := rawdb.ReadChainConfig(tx, genesisHash)
|
|
if err != nil {
|
|
return Issuance{}, err
|
|
}
|
|
if chainConfig.Ethash == nil {
|
|
// Clique for example has no issuance
|
|
return Issuance{}, nil
|
|
}
|
|
|
|
block, err := api.getBlockByRPCNumber(tx, blockNr)
|
|
if err != nil {
|
|
return Issuance{}, err
|
|
}
|
|
minerReward, uncleRewards := ethash.AccumulateRewards(chainConfig, block.Header(), block.Uncles())
|
|
issuance := minerReward
|
|
for _, r := range uncleRewards {
|
|
p := r // avoids warning?
|
|
issuance.Add(&issuance, &p)
|
|
}
|
|
|
|
var ret Issuance
|
|
ret.BlockReward = hexutil.EncodeBig(minerReward.ToBig())
|
|
ret.Issuance = hexutil.EncodeBig(issuance.ToBig())
|
|
issuance.Sub(&issuance, &minerReward)
|
|
ret.UncleReward = hexutil.EncodeBig(issuance.ToBig())
|
|
return ret, nil
|
|
}
|
|
|
|
func (api *TgImpl) getBlockByRPCNumber(db ethdb.Database, blockNr rpc.BlockNumber) (*types.Block, error) {
|
|
blockNum, err := getBlockNumber(blockNr, db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rawdb.ReadBlockByNumber(db, blockNum)
|
|
}
|
|
|
|
// Issuance structure to return information about issuance
|
|
type Issuance struct {
|
|
BlockReward string `json:"blockReward,omitempty"`
|
|
UncleReward string `json:"uncleReward,omitempty"`
|
|
Issuance string `json:"issuance,omitempty"`
|
|
}
|