mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
611 lines
21 KiB
Go
611 lines
21 KiB
Go
// Copyright 2015 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package eth
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"math/big"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/XinFinOrg/XDPoSChain/XDCx"
|
|
"github.com/XinFinOrg/XDPoSChain/XDCx/tradingstate"
|
|
"github.com/XinFinOrg/XDPoSChain/XDCxlending"
|
|
"github.com/XinFinOrg/XDPoSChain/accounts"
|
|
"github.com/XinFinOrg/XDPoSChain/accounts/abi/bind"
|
|
"github.com/XinFinOrg/XDPoSChain/common"
|
|
"github.com/XinFinOrg/XDPoSChain/common/math"
|
|
"github.com/XinFinOrg/XDPoSChain/consensus"
|
|
"github.com/XinFinOrg/XDPoSChain/consensus/XDPoS"
|
|
"github.com/XinFinOrg/XDPoSChain/contracts"
|
|
"github.com/XinFinOrg/XDPoSChain/core"
|
|
"github.com/XinFinOrg/XDPoSChain/core/bloombits"
|
|
"github.com/XinFinOrg/XDPoSChain/core/rawdb"
|
|
"github.com/XinFinOrg/XDPoSChain/core/state"
|
|
"github.com/XinFinOrg/XDPoSChain/core/types"
|
|
"github.com/XinFinOrg/XDPoSChain/core/vm"
|
|
"github.com/XinFinOrg/XDPoSChain/eth/downloader"
|
|
"github.com/XinFinOrg/XDPoSChain/eth/gasprice"
|
|
"github.com/XinFinOrg/XDPoSChain/eth/util"
|
|
"github.com/XinFinOrg/XDPoSChain/ethdb"
|
|
"github.com/XinFinOrg/XDPoSChain/event"
|
|
"github.com/XinFinOrg/XDPoSChain/log"
|
|
"github.com/XinFinOrg/XDPoSChain/params"
|
|
"github.com/XinFinOrg/XDPoSChain/rpc"
|
|
)
|
|
|
|
// EthApiBackend implements ethapi.Backend for full nodes
|
|
type EthApiBackend struct {
|
|
eth *Ethereum
|
|
gpo *gasprice.Oracle
|
|
XDPoS *XDPoS.XDPoS
|
|
}
|
|
|
|
func (b *EthApiBackend) ChainConfig() *params.ChainConfig {
|
|
return b.eth.chainConfig
|
|
}
|
|
|
|
func (b *EthApiBackend) CurrentBlock() *types.Block {
|
|
return b.eth.blockchain.CurrentBlock()
|
|
}
|
|
|
|
func (b *EthApiBackend) SetHead(number uint64) {
|
|
b.eth.protocolManager.downloader.Cancel()
|
|
b.eth.blockchain.SetHead(number)
|
|
}
|
|
|
|
func (b *EthApiBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error) {
|
|
// Pending block is only known by the miner
|
|
if blockNr == rpc.PendingBlockNumber {
|
|
blockNr = rpc.LatestBlockNumber
|
|
}
|
|
// Otherwise resolve and return the block
|
|
if blockNr == rpc.LatestBlockNumber {
|
|
return b.eth.blockchain.CurrentBlock().Header(), nil
|
|
} else if blockNr == rpc.CommittedBlockNumber {
|
|
if b.eth.chainConfig.XDPoS == nil {
|
|
return nil, errors.New("PoW does not support confirmed block lookup")
|
|
}
|
|
current := b.eth.blockchain.CurrentBlock().Header()
|
|
if b.eth.blockchain.Config().XDPoS.BlockConsensusVersion(
|
|
current.Number,
|
|
current.Extra,
|
|
XDPoS.ExtraFieldCheck,
|
|
) == params.ConsensusEngineVersion2 {
|
|
// TO CHECK: why calling config in XDPoS is blocked (not field and method)
|
|
confirmedHash := b.XDPoS.EngineV2.GetLatestCommittedBlockInfo().Hash
|
|
return b.eth.blockchain.GetHeaderByHash(confirmedHash), nil
|
|
} else {
|
|
return nil, errors.New("PoS V1 does not support confirmed block lookup")
|
|
}
|
|
}
|
|
header := b.eth.blockchain.GetHeaderByNumber(uint64(blockNr))
|
|
if header == nil {
|
|
return nil, errors.New("header for number not found")
|
|
}
|
|
return header, nil
|
|
}
|
|
|
|
func (b *EthApiBackend) HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error) {
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
return b.HeaderByNumber(ctx, blockNr)
|
|
}
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
header := b.eth.blockchain.GetHeaderByHash(hash)
|
|
if header == nil {
|
|
return nil, errors.New("header for hash not found")
|
|
}
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
return nil, errors.New("hash is not currently canonical")
|
|
}
|
|
return header, nil
|
|
}
|
|
return nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
}
|
|
|
|
func (b *EthApiBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
|
|
return b.eth.blockchain.GetHeaderByHash(hash), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) {
|
|
// Pending block is only known by the miner
|
|
if blockNr == rpc.PendingBlockNumber {
|
|
blockNr = rpc.LatestBlockNumber
|
|
}
|
|
// Otherwise resolve and return the block
|
|
if blockNr == rpc.LatestBlockNumber {
|
|
return b.eth.blockchain.CurrentBlock(), nil
|
|
} else if blockNr == rpc.CommittedBlockNumber {
|
|
if b.eth.chainConfig.XDPoS == nil {
|
|
return nil, errors.New("PoW does not support confirmed block lookup")
|
|
}
|
|
current := b.eth.blockchain.CurrentBlock().Header()
|
|
if b.eth.blockchain.Config().XDPoS.BlockConsensusVersion(
|
|
current.Number,
|
|
current.Extra,
|
|
XDPoS.ExtraFieldCheck,
|
|
) == params.ConsensusEngineVersion2 {
|
|
// TO CHECK: why calling config in XDPoS is blocked (not field and method)
|
|
confirmedHash := b.XDPoS.EngineV2.GetLatestCommittedBlockInfo().Hash
|
|
return b.eth.blockchain.GetBlockByHash(confirmedHash), nil
|
|
} else {
|
|
return nil, errors.New("PoS V1 does not support confirmed block lookup")
|
|
}
|
|
}
|
|
return b.eth.blockchain.GetBlockByNumber(uint64(blockNr)), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
return b.eth.blockchain.GetBlockByHash(hash), nil
|
|
}
|
|
|
|
// GetBody returns body of a block. It does not resolve special block numbers.
|
|
func (b *EthApiBackend) GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error) {
|
|
if number < 0 || hash == (common.Hash{}) {
|
|
return nil, errors.New("invalid arguments; expect hash and no special block numbers")
|
|
}
|
|
if body := b.eth.blockchain.GetBody(hash); body != nil {
|
|
return body, nil
|
|
}
|
|
return nil, errors.New("block body not found")
|
|
}
|
|
|
|
func (b *EthApiBackend) BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error) {
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
return b.BlockByNumber(ctx, blockNr)
|
|
}
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
header := b.eth.blockchain.GetHeaderByHash(hash)
|
|
if header == nil {
|
|
return nil, errors.New("header for hash not found")
|
|
}
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
return nil, errors.New("hash is not currently canonical")
|
|
}
|
|
block := b.eth.blockchain.GetBlock(hash, header.Number.Uint64())
|
|
if block == nil {
|
|
return nil, errors.New("header found, but block body is missing")
|
|
}
|
|
return block, nil
|
|
}
|
|
return nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
}
|
|
|
|
func (b *EthApiBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
|
|
return b.eth.miner.PendingBlockAndReceipts()
|
|
}
|
|
|
|
func (b *EthApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
|
|
// Pending state is only known by the miner
|
|
if blockNr == rpc.PendingBlockNumber {
|
|
blockNr = rpc.LatestBlockNumber
|
|
}
|
|
// Otherwise resolve the block number and return its state
|
|
header, err := b.HeaderByNumber(ctx, blockNr)
|
|
if header == nil || err != nil {
|
|
return nil, nil, err
|
|
}
|
|
stateDb, err := b.eth.BlockChain().StateAt(header.Root)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return stateDb, header, err
|
|
}
|
|
|
|
func (b *EthApiBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error) {
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
return b.StateAndHeaderByNumber(ctx, blockNr)
|
|
}
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
header, err := b.HeaderByHash(ctx, hash)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
if header == nil {
|
|
return nil, nil, errors.New("header for hash not found")
|
|
}
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
return nil, nil, errors.New("hash is not currently canonical")
|
|
}
|
|
stateDb, err := b.eth.BlockChain().StateAt(header.Root)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return stateDb, header, nil
|
|
}
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
}
|
|
|
|
func (b *EthApiBackend) GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error) {
|
|
return b.eth.blockchain.GetBlockByHash(blockHash), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) GetReceipts(ctx context.Context, blockHash common.Hash) (types.Receipts, error) {
|
|
return b.eth.blockchain.GetReceiptsByHash(blockHash), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
|
|
return rawdb.ReadLogs(b.eth.chainDb, hash, number), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) GetTd(blockHash common.Hash) *big.Int {
|
|
return b.eth.blockchain.GetTdByHash(blockHash)
|
|
}
|
|
|
|
func (b *EthApiBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, XDCxState *tradingstate.TradingStateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error) {
|
|
vmError := func() error { return nil }
|
|
if vmConfig == nil {
|
|
vmConfig = b.eth.blockchain.GetVMConfig()
|
|
}
|
|
state.SetBalance(msg.From(), math.MaxBig256)
|
|
txContext := core.NewEVMTxContext(msg)
|
|
context := core.NewEVMBlockContext(header, b.eth.BlockChain(), nil)
|
|
return vm.NewEVM(context, txContext, state, XDCxState, b.eth.chainConfig, *vmConfig), vmError, nil
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
|
|
return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
return b.eth.miner.SubscribePendingLogs(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
|
|
return b.eth.BlockChain().SubscribeChainEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
|
|
return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
|
|
return b.eth.BlockChain().SubscribeChainSideEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
return b.eth.BlockChain().SubscribeLogsEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error {
|
|
return b.eth.txPool.AddLocal(signedTx)
|
|
}
|
|
|
|
// SendOrderTx send order via backend
|
|
func (b *EthApiBackend) SendOrderTx(ctx context.Context, signedTx *types.OrderTransaction) error {
|
|
return b.eth.orderPool.AddLocal(signedTx)
|
|
}
|
|
|
|
// SendLendingTx send order via backend
|
|
func (b *EthApiBackend) SendLendingTx(ctx context.Context, signedTx *types.LendingTransaction) error {
|
|
return b.eth.lendingPool.AddLocal(signedTx)
|
|
}
|
|
|
|
func (b *EthApiBackend) GetPoolTransactions() (types.Transactions, error) {
|
|
pending := b.eth.txPool.Pending(false)
|
|
var txs types.Transactions
|
|
for _, batch := range pending {
|
|
txs = append(txs, batch...)
|
|
}
|
|
return txs, nil
|
|
}
|
|
|
|
func (b *EthApiBackend) GetPoolTransaction(hash common.Hash) *types.Transaction {
|
|
return b.eth.txPool.Get(hash)
|
|
}
|
|
|
|
func (b *EthApiBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
|
|
return b.eth.txPool.Nonce(addr), nil
|
|
}
|
|
|
|
func (b *EthApiBackend) Stats() (pending int, queued int) {
|
|
return b.eth.txPool.Stats()
|
|
}
|
|
|
|
func (b *EthApiBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
|
|
return b.eth.TxPool().Content()
|
|
}
|
|
|
|
func (b *EthApiBackend) TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions) {
|
|
return b.eth.TxPool().ContentFrom(addr)
|
|
}
|
|
|
|
func (b *EthApiBackend) OrderTxPoolContent() (map[common.Address]types.OrderTransactions, map[common.Address]types.OrderTransactions) {
|
|
return b.eth.OrderPool().Content()
|
|
}
|
|
func (b *EthApiBackend) OrderStats() (pending int, queued int) {
|
|
return b.eth.txPool.Stats()
|
|
}
|
|
|
|
func (b *EthApiBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
|
|
return b.eth.TxPool().SubscribeNewTxsEvent(ch)
|
|
}
|
|
|
|
func (b *EthApiBackend) Downloader() *downloader.Downloader {
|
|
return b.eth.Downloader()
|
|
}
|
|
|
|
func (b *EthApiBackend) ProtocolVersion() int {
|
|
return b.eth.EthVersion()
|
|
}
|
|
|
|
func (b *EthApiBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
|
|
return b.gpo.SuggestTipCap(ctx)
|
|
}
|
|
|
|
func (b *EthApiBackend) FeeHistory(ctx context.Context, blockCount uint64, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error) {
|
|
return b.gpo.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles)
|
|
}
|
|
|
|
func (b *EthApiBackend) ChainDb() ethdb.Database {
|
|
return b.eth.ChainDb()
|
|
}
|
|
|
|
func (b *EthApiBackend) EventMux() *event.TypeMux {
|
|
return b.eth.EventMux()
|
|
}
|
|
|
|
func (b *EthApiBackend) RPCGasCap() uint64 {
|
|
return b.eth.config.RPCGasCap
|
|
}
|
|
|
|
func (b *EthApiBackend) AccountManager() *accounts.Manager {
|
|
return b.eth.AccountManager()
|
|
}
|
|
|
|
func (b *EthApiBackend) RPCTxFeeCap() float64 {
|
|
return b.eth.config.RPCTxFeeCap
|
|
}
|
|
|
|
func (b *EthApiBackend) BloomStatus() (uint64, uint64) {
|
|
sections, _, _ := b.eth.bloomIndexer.Sections()
|
|
return params.BloomBitsBlocks, sections
|
|
}
|
|
|
|
func (b *EthApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
|
|
for i := 0; i < bloomFilterThreads; i++ {
|
|
go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
|
|
}
|
|
}
|
|
|
|
func (b *EthApiBackend) GetIPCClient() (bind.ContractBackend, error) {
|
|
// func (b *EthApiBackend) GetIPCClient() (*ethclient.Client, error) {
|
|
client, err := b.eth.blockchain.GetClient()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return client, nil
|
|
}
|
|
|
|
func (b *EthApiBackend) GetEngine() consensus.Engine {
|
|
return b.eth.engine
|
|
}
|
|
|
|
func (b *EthApiBackend) CurrentHeader() *types.Header {
|
|
return b.eth.blockchain.CurrentHeader()
|
|
}
|
|
|
|
func (b *EthApiBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64, base *state.StateDB, checkLive bool) (*state.StateDB, error) {
|
|
return b.eth.stateAtBlock(block, reexec, base, checkLive)
|
|
}
|
|
|
|
func (s *EthApiBackend) GetRewardByHash(hash common.Hash) map[string]map[string]map[string]*big.Int {
|
|
header := s.eth.blockchain.GetHeaderByHash(hash)
|
|
if header != nil {
|
|
data, err := os.ReadFile(filepath.Join(common.StoreRewardFolder, header.Number.String()+"."+header.Hash().Hex()))
|
|
if err == nil {
|
|
rewards := make(map[string]map[string]map[string]*big.Int)
|
|
err = json.Unmarshal(data, &rewards)
|
|
if err == nil {
|
|
return rewards
|
|
}
|
|
} else {
|
|
data, err = os.ReadFile(filepath.Join(common.StoreRewardFolder, header.Number.String()+"."+header.HashNoValidator().Hex()))
|
|
if err == nil {
|
|
rewards := make(map[string]map[string]map[string]*big.Int)
|
|
err = json.Unmarshal(data, &rewards)
|
|
if err == nil {
|
|
return rewards
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return make(map[string]map[string]map[string]*big.Int)
|
|
}
|
|
|
|
// GetVotersRewards return a map of voters of snapshot at given block hash
|
|
// there is a function engine.HookReward nearly does the same thing but
|
|
// it does change the stateDB too - so can't use it here
|
|
// Steps:
|
|
// 1. Checking back to state of last checkpoint
|
|
// 2. Get list signers + reward at that checkpoint
|
|
// 3. Find out the list signers_reward for input masternode's reward
|
|
// 4. Calculate voters's rewards for input masternode
|
|
func (b *EthApiBackend) GetVotersRewards(masternodeAddr common.Address) map[common.Address]*big.Int {
|
|
chain := b.eth.blockchain
|
|
block := chain.CurrentBlock()
|
|
number := block.Number().Uint64()
|
|
engine := b.GetEngine().(*XDPoS.XDPoS)
|
|
foundationWalletAddr := chain.Config().XDPoS.FoudationWalletAddr
|
|
|
|
// calculate for 2 epochs ago
|
|
currentCheckpointNumber, _, err := engine.GetCurrentEpochSwitchBlock(chain, block.Number())
|
|
if err != nil {
|
|
log.Error("[GetVotersRewards] Fail to get GetCurrentEpochSwitchBlock for current checkpoint block", "block", block.Number(), "err", err)
|
|
}
|
|
lastCheckpointNumber, _, err := engine.GetCurrentEpochSwitchBlock(chain, big.NewInt(int64(currentCheckpointNumber-1)))
|
|
if err != nil {
|
|
log.Error("[GetVotersRewards] Fail to get GetCurrentEpochSwitchBlock for last checkpoint block", "block", block.Number(), "err", err)
|
|
}
|
|
|
|
lastCheckpointBlock := chain.GetBlockByNumber(lastCheckpointNumber)
|
|
rCheckpoint := chain.Config().XDPoS.RewardCheckpoint
|
|
|
|
state, err := chain.StateAt(lastCheckpointBlock.Root())
|
|
if err != nil {
|
|
log.Error("fail to get state in GetVotersRewards", "lastCheckpointNumber", lastCheckpointNumber, "err", err)
|
|
return nil
|
|
}
|
|
if state == nil {
|
|
log.Error("fail to get state in GetVotersRewards", "lastCheckpointNumber", lastCheckpointNumber)
|
|
return nil
|
|
}
|
|
|
|
if foundationWalletAddr == (common.Address{}) {
|
|
log.Error("Foundation Wallet Address is empty", "error", foundationWalletAddr)
|
|
return nil
|
|
}
|
|
|
|
if lastCheckpointNumber <= 0 || lastCheckpointNumber-rCheckpoint <= 0 || foundationWalletAddr == (common.Address{}) {
|
|
return nil
|
|
}
|
|
|
|
// Get signers in blockSigner smartcontract.
|
|
// Get reward inflation.
|
|
chainReward := new(big.Int).Mul(new(big.Int).SetUint64(chain.Config().XDPoS.Reward), new(big.Int).SetUint64(params.Ether))
|
|
chainReward = util.RewardInflation(chain, chainReward, number, common.BlocksPerYear)
|
|
totalSigner := new(uint64)
|
|
signers, err := contracts.GetRewardForCheckpoint(engine, chain, lastCheckpointBlock.Header(), rCheckpoint, totalSigner)
|
|
|
|
if err != nil {
|
|
log.Crit("Fail to get signers for reward checkpoint", "error", err)
|
|
return nil
|
|
}
|
|
|
|
rewardSigners, err := contracts.CalculateRewardForSigner(chainReward, signers, *totalSigner)
|
|
if err != nil {
|
|
log.Crit("Fail to calculate reward for signers", "error", err)
|
|
return nil
|
|
}
|
|
|
|
if len(signers) <= 0 {
|
|
return nil
|
|
}
|
|
|
|
// Add reward for coin voters of input masternode.
|
|
var voterResults map[common.Address]*big.Int
|
|
for signer, calcReward := range rewardSigners {
|
|
if signer == masternodeAddr {
|
|
rewards, err := contracts.CalculateRewardForHolders(foundationWalletAddr, state, masternodeAddr, calcReward, number)
|
|
if err != nil {
|
|
log.Crit("Fail to calculate reward for holders.", "error", err)
|
|
return nil
|
|
}
|
|
voterResults = rewards
|
|
break
|
|
}
|
|
}
|
|
|
|
return voterResults
|
|
|
|
}
|
|
|
|
// GetVotersCap return all voters's capability at a checkpoint
|
|
func (b *EthApiBackend) GetVotersCap(checkpoint *big.Int, masterAddr common.Address, voters []common.Address) map[common.Address]*big.Int {
|
|
chain := b.eth.blockchain
|
|
checkpointBlock := chain.GetBlockByNumber(checkpoint.Uint64())
|
|
statedb, err := chain.StateAt(checkpointBlock.Root())
|
|
|
|
if err != nil {
|
|
log.Error("fail to get state in GetVotersCap", "checkpoint", checkpoint, "err", err)
|
|
return nil
|
|
}
|
|
if statedb != nil {
|
|
log.Error("fail to get state in GetVotersCap", "checkpoint", checkpoint)
|
|
return nil
|
|
}
|
|
|
|
voterCaps := make(map[common.Address]*big.Int)
|
|
for _, voteAddr := range voters {
|
|
voterCap := state.GetVoterCap(statedb, masterAddr, voteAddr)
|
|
voterCaps[voteAddr] = voterCap
|
|
}
|
|
return voterCaps
|
|
}
|
|
|
|
// GetEpochDuration return latest generating velocity epoch by minute
|
|
// ie 30min for each epoch
|
|
func (b *EthApiBackend) GetEpochDuration() *big.Int {
|
|
chain := b.eth.blockchain
|
|
block := chain.CurrentBlock()
|
|
number := block.Number().Uint64()
|
|
lastCheckpointNumber := number - (number % b.ChainConfig().XDPoS.Epoch)
|
|
lastCheckpointBlockTime := chain.GetBlockByNumber(lastCheckpointNumber).Time()
|
|
secondToLastCheckpointNumber := lastCheckpointNumber - b.ChainConfig().XDPoS.Epoch
|
|
secondToLastCheckpointBlockTime := chain.GetBlockByNumber(secondToLastCheckpointNumber).Time()
|
|
|
|
return secondToLastCheckpointBlockTime.Add(secondToLastCheckpointBlockTime, lastCheckpointBlockTime.Mul(lastCheckpointBlockTime, new(big.Int).SetInt64(-1)))
|
|
}
|
|
|
|
// GetMasternodesCap return a cap of all masternode at a checkpoint
|
|
func (b *EthApiBackend) GetMasternodesCap(checkpoint uint64) map[common.Address]*big.Int {
|
|
checkpointBlock := b.eth.blockchain.GetBlockByNumber(checkpoint)
|
|
statedb, err := b.eth.blockchain.StateAt(checkpointBlock.Root())
|
|
if err != nil {
|
|
log.Error("fail to get state in GetMasternodesCap", "checkpoint", checkpoint, "err", err)
|
|
return nil
|
|
}
|
|
if statedb == nil {
|
|
log.Error("fail to get state in GetMasternodesCap", "checkpoint", checkpoint)
|
|
return nil
|
|
}
|
|
|
|
candicates := state.GetCandidates(statedb)
|
|
|
|
masternodesCap := map[common.Address]*big.Int{}
|
|
for _, candicate := range candicates {
|
|
masternodesCap[candicate] = state.GetCandidateCap(statedb, candicate)
|
|
}
|
|
|
|
return masternodesCap
|
|
}
|
|
|
|
func (b *EthApiBackend) GetBlocksHashCache(blockNr uint64) []common.Hash {
|
|
return b.eth.blockchain.GetBlocksHashCache(blockNr)
|
|
}
|
|
|
|
func (b *EthApiBackend) AreTwoBlockSamePath(bh1 common.Hash, bh2 common.Hash) bool {
|
|
return b.eth.blockchain.AreTwoBlockSamePath(bh1, bh2)
|
|
}
|
|
|
|
// GetOrderNonce get order nonce
|
|
func (b *EthApiBackend) GetOrderNonce(address common.Hash) (uint64, error) {
|
|
XDCxService := b.eth.GetXDCX()
|
|
if XDCxService != nil {
|
|
author, err := b.GetEngine().Author(b.CurrentBlock().Header())
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
XDCxState, err := XDCxService.GetTradingState(b.CurrentBlock(), author)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return XDCxState.GetNonce(address), nil
|
|
}
|
|
return 0, errors.New("cannot find XDCx service")
|
|
}
|
|
|
|
func (b *EthApiBackend) XDCxService() *XDCx.XDCX {
|
|
return b.eth.XDCX
|
|
}
|
|
|
|
func (b *EthApiBackend) LendingService() *XDCxlending.Lending {
|
|
return b.eth.Lending
|
|
}
|