2015-12-16 03:26:23 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2016-11-09 01:01:56 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-12-16 03:26:23 +00:00
|
|
|
//
|
2016-11-09 01:01:56 +00:00
|
|
|
// 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
|
2015-12-16 03:26:23 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2016-11-09 01:01:56 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-12-16 03:26:23 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-11-09 01:01:56 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
2015-12-16 03:26:23 +00:00
|
|
|
//
|
2016-11-09 01:01:56 +00:00
|
|
|
// 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/>.
|
2015-12-16 03:26:23 +00:00
|
|
|
|
|
|
|
package eth
|
|
|
|
|
2021-04-19 07:56:44 +00:00
|
|
|
/*
|
2018-05-09 07:59:00 +00:00
|
|
|
// EthAPIBackend implements ethapi.Backend for full nodes
|
|
|
|
type EthAPIBackend struct {
|
2021-02-23 12:09:19 +00:00
|
|
|
extRPCEnabled bool
|
|
|
|
allowUnprotectedTxs bool
|
|
|
|
eth *Ethereum
|
|
|
|
gpo *gasprice.Oracle
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 10:14:52 +00:00
|
|
|
// ChainConfig returns the active chain configuration.
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) ChainConfig() *chain.Config {
|
2019-03-27 11:23:08 +00:00
|
|
|
return b.eth.blockchain.Config()
|
2016-11-02 12:44:13 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) CurrentBlock() *types.Block {
|
2016-11-02 12:44:13 +00:00
|
|
|
return b.eth.blockchain.CurrentBlock()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SetHead(number uint64) {
|
2020-12-14 09:27:15 +00:00
|
|
|
b.eth.handler.downloader.Cancel()
|
2015-12-16 03:26:23 +00:00
|
|
|
b.eth.blockchain.SetHead(number)
|
|
|
|
}
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
func (b *EthAPIBackend) resolveBlockNumber(blockNr rpc.BlockNumber) uint64 {
|
|
|
|
if blockNr == rpc.LatestBlockNumber {
|
|
|
|
return b.eth.blockchain.CurrentBlock().NumberU64()
|
|
|
|
}
|
|
|
|
return uint64(blockNr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error) {
|
|
|
|
bn := b.resolveBlockNumber(blockNr)
|
|
|
|
return b.eth.blockchain.GetHeaderByNumber(bn), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash libcommon.Hash) (*types.Header, error) {
|
2018-07-12 14:36:07 +00:00
|
|
|
return b.eth.blockchain.GetHeaderByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
func (b *EthAPIBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) {
|
|
|
|
bn := b.resolveBlockNumber(blockNr)
|
|
|
|
return b.eth.blockchain.GetBlockByNumber(bn), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash libcommon.Hash) (*types.Block, error) {
|
2019-07-25 06:29:53 +00:00
|
|
|
return b.eth.blockchain.GetBlockByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.IntraBlockState, *types.Header, error) {
|
|
|
|
bn := b.resolveBlockNumber(blockNr)
|
|
|
|
header, err := b.HeaderByNumber(ctx, blockNr)
|
2019-05-02 12:50:23 +00:00
|
|
|
if err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
return nil, nil, err
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
2019-05-02 12:50:23 +00:00
|
|
|
if header == nil {
|
|
|
|
return nil, nil, errors.New("header not found")
|
|
|
|
}
|
2020-12-14 11:27:52 +00:00
|
|
|
ds := state.NewPlainDBState(b.eth.chainDb, bn)
|
2019-05-27 13:51:49 +00:00
|
|
|
stateDb := state.New(ds)
|
|
|
|
return stateDb, header, nil
|
2020-05-27 16:24:34 +00:00
|
|
|
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
func (b *EthAPIBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.IntraBlockState, *types.Header, error) {
|
2019-09-26 08:47:31 +00:00
|
|
|
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")
|
|
|
|
}
|
2020-12-14 11:27:52 +00:00
|
|
|
ds := state.NewPlainDBState(b.eth.chainDb, header.Number.Uint64())
|
2020-05-27 16:24:34 +00:00
|
|
|
stateDb := state.New(ds)
|
|
|
|
return stateDb, header, nil
|
2019-09-26 08:47:31 +00:00
|
|
|
}
|
|
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash libcommon.Hash) (types.Receipts, error) {
|
2020-04-14 12:50:47 +00:00
|
|
|
number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash)
|
|
|
|
if number == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
block := rawdb.ReadBlock(b.eth.chainDb, hash, *number)
|
|
|
|
|
|
|
|
if cached := b.tryGetReceiptsFromDb(block); cached != nil {
|
|
|
|
return cached, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.getReceiptsByReApplyingTransactions(block, *number)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) getReceiptsByReApplyingTransactions(block *types.Block, number uint64) (types.Receipts, error) {
|
2020-12-14 11:27:52 +00:00
|
|
|
dbstate := state.NewPlainDBState(b.eth.chainDb, number-1)
|
2020-04-14 12:50:47 +00:00
|
|
|
statedb := state.New(dbstate)
|
|
|
|
header := block.Header()
|
|
|
|
var receipts types.Receipts
|
|
|
|
var usedGas = new(uint64)
|
|
|
|
var gp = new(core.GasPool).AddGas(block.GasLimit())
|
|
|
|
vmConfig := vm.Config{}
|
|
|
|
for i, tx := range block.Transactions() {
|
|
|
|
statedb.Prepare(tx.Hash(), block.Hash(), i)
|
|
|
|
|
2021-04-06 09:52:53 +00:00
|
|
|
receipt, err := core.ApplyTransaction(b.ChainConfig(), b.eth.blockchain.GetHeader, b.eth.blockchain.Engine(), nil, gp, statedb, dbstate, header, tx, usedGas, vmConfig)
|
2020-04-14 12:50:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-05-27 13:51:49 +00:00
|
|
|
}
|
2020-04-14 12:50:47 +00:00
|
|
|
|
|
|
|
receipts = append(receipts, receipt)
|
2019-05-27 13:51:49 +00:00
|
|
|
}
|
2020-04-14 12:50:47 +00:00
|
|
|
|
|
|
|
return receipts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) tryGetReceiptsFromDb(block *types.Block) types.Receipts {
|
|
|
|
return rawdb.ReadReceipts(
|
|
|
|
b.eth.chainDb,
|
|
|
|
block.Hash(),
|
|
|
|
block.NumberU64(),
|
|
|
|
)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash libcommon.Hash) ([][]*types.Log, error) {
|
2019-05-27 13:51:49 +00:00
|
|
|
number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash)
|
|
|
|
if number == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
receipts, err := b.GetReceipts(ctx, hash)
|
|
|
|
if err != nil {
|
2021-10-04 15:16:52 +00:00
|
|
|
return nil, fmt.Errorf("getReceipt error: %w", err)
|
2019-05-27 13:51:49 +00:00
|
|
|
}
|
2018-02-22 10:48:14 +00:00
|
|
|
if receipts == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
logs := make([][]*types.Log, len(receipts))
|
|
|
|
for i, receipt := range receipts {
|
|
|
|
logs[i] = receipt.Logs
|
|
|
|
}
|
|
|
|
return logs, nil
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetTd(ctx context.Context, hash libcommon.Hash) *big.Int {
|
2020-07-13 09:02:54 +00:00
|
|
|
return b.eth.blockchain.GetTdByHash(hash)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
func (b *EthAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.IntraBlockState, header *types.Header) (*vm.EVM, func() error, error) {
|
2015-12-16 03:26:23 +00:00
|
|
|
vmError := func() error { return nil }
|
2016-12-06 01:16:03 +00:00
|
|
|
|
2020-11-13 12:42:19 +00:00
|
|
|
txContext := core.NewEVMTxContext(msg)
|
2021-04-06 09:52:53 +00:00
|
|
|
context := core.NewEVMBlockContext(header, b.eth.BlockChain().GetHeader, b.eth.BlockChain().Engine(), nil)
|
2020-11-13 12:42:19 +00:00
|
|
|
return vm.NewEVM(context, txContext, state, b.eth.blockchain.Config(), *b.eth.blockchain.GetVMConfig()), vmError, nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainSideEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2021-04-22 17:11:37 +00:00
|
|
|
func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx types.Transaction) error {
|
2017-07-05 13:51:55 +00:00
|
|
|
return b.eth.txPool.AddLocal(signedTx)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
|
2016-12-10 22:54:58 +00:00
|
|
|
pending, err := b.eth.txPool.Pending()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-01 15:59:55 +00:00
|
|
|
var txs types.Transactions
|
2016-12-10 22:54:58 +00:00
|
|
|
for _, batch := range pending {
|
2016-07-01 15:59:55 +00:00
|
|
|
txs = append(txs, batch...)
|
|
|
|
}
|
2016-12-10 22:54:58 +00:00
|
|
|
return txs, nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolTransaction(hash libcommon.Hash) types.Transaction {
|
2016-07-01 15:59:55 +00:00
|
|
|
return b.eth.txPool.Get(hash)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash libcommon.Hash) (types.Transaction, libcommon.Hash, uint64, uint64, error) {
|
2019-05-13 11:41:10 +00:00
|
|
|
tx, blockHash, blockNumber, index := rawdb.ReadTransaction(b.eth.ChainDb(), txHash)
|
|
|
|
return tx, blockHash, blockNumber, index, nil
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr libcommon.Address) (uint64, error) {
|
2019-07-09 07:34:35 +00:00
|
|
|
return b.eth.txPool.Nonce(addr), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) Stats() (pending int, queued int) {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.txPool.Stats()
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (b *EthAPIBackend) TxPoolContent() (map[libcommon.Address]types.Transactions, map[libcommon.Address]types.Transactions) {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.TxPool().Content()
|
2020-08-15 17:32:05 +00:00
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
|
2020-08-15 17:32:05 +00:00
|
|
|
func (b *EthAPIBackend) TxPool() *core.TxPool {
|
2020-08-03 17:40:46 +00:00
|
|
|
return b.eth.TxPool()
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 08:45:52 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
|
|
|
|
return b.eth.TxPool().SubscribeNewTxsEvent(ch)
|
2017-08-18 10:58:36 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) Downloader() *downloader.Downloader {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.Downloader()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SuggestPrice(ctx context.Context) (*big.Int, error) {
|
2017-04-06 14:20:42 +00:00
|
|
|
return b.gpo.SuggestPrice(ctx)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ChainDb() ethdb.Database {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.ChainDb()
|
|
|
|
}
|
|
|
|
|
2019-04-04 11:03:10 +00:00
|
|
|
func (b *EthAPIBackend) ExtRPCEnabled() bool {
|
|
|
|
return b.extRPCEnabled
|
|
|
|
}
|
|
|
|
|
2021-02-23 12:09:19 +00:00
|
|
|
func (b *EthAPIBackend) UnprotectedAllowed() bool {
|
|
|
|
return b.allowUnprotectedTxs
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:54:21 +00:00
|
|
|
func (b *EthAPIBackend) RPCGasCap() uint64 {
|
2019-04-08 11:49:52 +00:00
|
|
|
return b.eth.config.RPCGasCap
|
|
|
|
}
|
|
|
|
|
2020-06-17 07:46:31 +00:00
|
|
|
func (b *EthAPIBackend) RPCTxFeeCap() float64 {
|
|
|
|
return b.eth.config.RPCTxFeeCap
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
|
2020-10-12 08:39:04 +00:00
|
|
|
return 0, 0
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
|
2017-08-29 11:13:11 +00:00
|
|
|
for i := 0; i < bloomFilterThreads; i++ {
|
|
|
|
go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
|
|
|
|
func (b *EthAPIBackend) Engine() consensus.Engine {
|
|
|
|
return b.eth.engine
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) CurrentHeader() *types.Header {
|
|
|
|
return b.eth.blockchain.CurrentHeader()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) StartMining(threads int) error {
|
|
|
|
return b.eth.StartMining(threads)
|
|
|
|
}
|
2021-01-25 13:36:39 +00:00
|
|
|
|
2021-03-12 17:26:06 +00:00
|
|
|
func (b *EthAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64) (*state.IntraBlockState, func(), error) {
|
2021-01-25 13:36:39 +00:00
|
|
|
return b.eth.stateAtBlock(block, reexec)
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:26:06 +00:00
|
|
|
func (b *EthAPIBackend) StatesInRange(ctx context.Context, fromBlock *types.Block, toBlock *types.Block, reexec uint64) ([]*state.IntraBlockState, func(), error) {
|
2021-01-25 13:36:39 +00:00
|
|
|
return b.eth.statesInRange(fromBlock, toBlock, reexec)
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:26:06 +00:00
|
|
|
func (b *EthAPIBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (core.Message, vm.BlockContext, *state.IntraBlockState, func(), error) {
|
2021-01-25 13:36:39 +00:00
|
|
|
return b.eth.stateAtTransaction(block, txIndex, reexec)
|
|
|
|
}
|
2021-04-19 07:56:44 +00:00
|
|
|
*/
|