2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
2016-10-14 03:51:29 +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
|
2016-10-14 03:51:29 +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,
|
2016-10-14 03:51:29 +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.
|
2016-10-14 03:51:29 +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/>.
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
package les
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
2019-05-02 12:50:23 +00:00
|
|
|
"errors"
|
2016-10-14 03:51:29 +00:00
|
|
|
"math/big"
|
2021-10-12 08:46:04 +00:00
|
|
|
"time"
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2021-09-10 07:55:48 +00:00
|
|
|
"github.com/ethereum/go-ethereum"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2020-08-03 17:40:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2017-08-29 11:13:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/bloombits"
|
2018-05-07 11:35:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2017-06-27 13:57:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/gasprice"
|
2022-09-07 18:25:58 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/tracers"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
|
|
"github.com/ethereum/go-ethereum/light"
|
2016-11-02 12:44:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2017-01-05 13:03:50 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2016-10-14 03:51:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type LesApiBackend struct {
|
2021-02-23 12:09:19 +00:00
|
|
|
extRPCEnabled bool
|
|
|
|
allowUnprotectedTxs bool
|
|
|
|
eth *LightEthereum
|
|
|
|
gpo *gasprice.Oracle
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2016-11-02 12:44:13 +00:00
|
|
|
func (b *LesApiBackend) ChainConfig() *params.ChainConfig {
|
|
|
|
return b.eth.chainConfig
|
|
|
|
}
|
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
func (b *LesApiBackend) CurrentBlock() *types.Header {
|
|
|
|
return b.eth.BlockChain().CurrentHeader()
|
2016-11-02 12:44:13 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func (b *LesApiBackend) SetHead(number uint64) {
|
2019-08-21 09:29:34 +00:00
|
|
|
b.eth.handler.downloader.Cancel()
|
2016-10-14 03:51:29 +00:00
|
|
|
b.eth.blockchain.SetHead(number)
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *LesApiBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
|
2021-07-15 23:52:40 +00:00
|
|
|
// Return the latest current as the pending one since there
|
|
|
|
// is no pending notion in the light client. TODO(rjl493456442)
|
|
|
|
// unify the behavior of `HeaderByNumber` and `PendingBlockAndReceipts`.
|
2021-06-28 14:16:32 +00:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2021-07-15 23:52:40 +00:00
|
|
|
return b.eth.blockchain.CurrentHeader(), nil
|
2021-06-28 14:16:32 +00:00
|
|
|
}
|
|
|
|
if number == rpc.LatestBlockNumber {
|
2016-10-14 03:51:29 +00:00
|
|
|
return b.eth.blockchain.CurrentHeader(), nil
|
|
|
|
}
|
2019-07-23 13:52:24 +00:00
|
|
|
return b.eth.blockchain.GetHeaderByNumberOdr(ctx, uint64(number))
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00:00
|
|
|
func (b *LesApiBackend) 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, err := b.HeaderByHash(ctx, hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2018-07-12 14:36:07 +00:00
|
|
|
func (b *LesApiBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
|
|
|
|
return b.eth.blockchain.GetHeaderByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *LesApiBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) {
|
|
|
|
header, err := b.HeaderByNumber(ctx, number)
|
2016-10-14 03:51:29 +00:00
|
|
|
if header == nil || err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-07-25 06:29:53 +00:00
|
|
|
return b.BlockByHash(ctx, header.Hash())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
|
|
return b.eth.blockchain.GetBlockByHash(ctx, hash)
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00:00
|
|
|
func (b *LesApiBackend) 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 {
|
|
|
|
block, err := b.BlockByHash(ctx, hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("header found, but block body is missing")
|
|
|
|
}
|
|
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(block.NumberU64()) != hash {
|
|
|
|
return nil, errors.New("hash is not currently canonical")
|
|
|
|
}
|
|
|
|
return block, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2023-02-13 09:59:27 +00:00
|
|
|
func (b *LesApiBackend) GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error) {
|
|
|
|
return light.GetBody(ctx, b.eth.odr, hash, uint64(number))
|
|
|
|
}
|
|
|
|
|
2021-06-28 14:16:32 +00:00
|
|
|
func (b *LesApiBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *LesApiBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
|
|
|
|
header, err := b.HeaderByNumber(ctx, number)
|
2019-05-02 12:50:23 +00:00
|
|
|
if err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
2019-05-02 12:50:23 +00:00
|
|
|
if header == nil {
|
|
|
|
return nil, nil, errors.New("header not found")
|
|
|
|
}
|
2017-06-27 13:57:06 +00:00
|
|
|
return light.NewState(ctx, header, b.eth.odr), header, nil
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00:00
|
|
|
func (b *LesApiBackend) 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 := b.eth.blockchain.GetHeaderByHash(hash)
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
return light.NewState(ctx, header, b.eth.odr), header, nil
|
|
|
|
}
|
|
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2018-05-07 11:35:06 +00:00
|
|
|
func (b *LesApiBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
|
|
|
|
if number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash); number != nil {
|
|
|
|
return light.GetBlockReceipts(ctx, b.eth.odr, hash, *number)
|
|
|
|
}
|
|
|
|
return nil, nil
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:14:59 +00:00
|
|
|
func (b *LesApiBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
|
|
|
|
return light.GetBlockLogs(ctx, b.eth.odr, hash, number)
|
2018-02-22 10:48:14 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 09:02:54 +00:00
|
|
|
func (b *LesApiBackend) GetTd(ctx context.Context, hash common.Hash) *big.Int {
|
|
|
|
if number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash); number != nil {
|
|
|
|
return b.eth.blockchain.GetTdOdr(ctx, hash, *number)
|
|
|
|
}
|
|
|
|
return nil
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
core, core/types: plain Message struct (#25977)
Here, the core.Message interface turns into a plain struct and
types.Message gets removed.
This is a breaking change to packages core and core/types. While we do
not promise API stability for package core, we do for core/types. An
exception can be made for types.Message, since it doesn't have any
purpose apart from invoking the state transition in package core.
types.Message was also marked deprecated by the same commit it
got added in, 4dca5d4db7 (November 2016).
The core.Message interface was added in December 2014, in commit
db494170dc, for the purpose of 'testing' state transitions. It's the
same change that made transaction struct fields private. Before that,
the state transition used *types.Transaction directly.
Over time, multiple implementations of the interface accrued across
different packages, since constructing a Message is required whenever
one wants to invoke the state transition. These implementations all
looked very similar, a struct with private fields exposing the fields
as accessor methods.
By changing Message into a struct with public fields we can remove all
these useless interface implementations. It will also hopefully
simplify future changes to the type with less updates to apply across
all of go-ethereum when a field is added to Message.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2023-03-09 13:19:12 +00:00
|
|
|
func (b *LesApiBackend) GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error) {
|
2021-04-07 14:54:31 +00:00
|
|
|
if vmConfig == nil {
|
|
|
|
vmConfig = new(vm.Config)
|
|
|
|
}
|
2020-11-13 12:42:19 +00:00
|
|
|
txContext := core.NewEVMTxContext(msg)
|
|
|
|
context := core.NewEVMBlockContext(header, b.eth.blockchain, nil)
|
2021-04-07 14:54:31 +00:00
|
|
|
return vm.NewEVM(context, txContext, state, b.eth.chainConfig, *vmConfig), state.Error, nil
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error {
|
|
|
|
return b.eth.txPool.Add(ctx, signedTx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) RemoveTx(txHash common.Hash) {
|
|
|
|
b.eth.txPool.RemoveTx(txHash)
|
|
|
|
}
|
|
|
|
|
2016-12-10 22:54:58 +00:00
|
|
|
func (b *LesApiBackend) GetPoolTransactions() (types.Transactions, error) {
|
2016-10-14 03:51:29 +00:00
|
|
|
return b.eth.txPool.GetTransactions()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) GetPoolTransaction(txHash common.Hash) *types.Transaction {
|
|
|
|
return b.eth.txPool.GetTransaction(txHash)
|
|
|
|
}
|
|
|
|
|
2019-05-13 11:41:10 +00:00
|
|
|
func (b *LesApiBackend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error) {
|
|
|
|
return light.GetTransaction(ctx, b.eth.odr, txHash)
|
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func (b *LesApiBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
|
|
|
|
return b.eth.txPool.GetNonce(ctx, addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) Stats() (pending int, queued int) {
|
|
|
|
return b.eth.txPool.Stats(), 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
|
|
|
|
return b.eth.txPool.Content()
|
|
|
|
}
|
|
|
|
|
2021-07-13 10:40:58 +00:00
|
|
|
func (b *LesApiBackend) TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions) {
|
|
|
|
return b.eth.txPool.ContentFrom(addr)
|
|
|
|
}
|
|
|
|
|
2018-05-18 08:45:52 +00:00
|
|
|
func (b *LesApiBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
|
|
|
|
return b.eth.txPool.SubscribeNewTxsEvent(ch)
|
2017-08-18 10:58:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
|
|
|
|
return b.eth.blockchain.SubscribeChainEvent(ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
|
|
|
|
return b.eth.blockchain.SubscribeChainHeadEvent(ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
|
|
|
|
return b.eth.blockchain.SubscribeChainSideEvent(ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
|
|
return b.eth.blockchain.SubscribeLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2019-12-10 11:39:14 +00:00
|
|
|
func (b *LesApiBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
|
|
return event.NewSubscription(func(quit <-chan struct{}) error {
|
|
|
|
<-quit
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-08-18 10:58:36 +00:00
|
|
|
func (b *LesApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
|
|
|
|
return b.eth.blockchain.SubscribeRemovedLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2021-09-10 07:55:48 +00:00
|
|
|
func (b *LesApiBackend) SyncProgress() ethereum.SyncProgress {
|
|
|
|
return b.eth.Downloader().Progress()
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) ProtocolVersion() int {
|
|
|
|
return b.eth.LesVersion() + 10000
|
|
|
|
}
|
|
|
|
|
core, eth, internal, les: RPC methods and fields for EIP 1559 (#22964)
* internal/ethapi: add baseFee to RPCMarshalHeader
* internal/ethapi: add FeeCap, Tip and correct GasPrice to EIP-1559 RPCTransaction results
* core,eth,les,internal: add support for tip estimation in gas price oracle
* internal/ethapi,eth/gasprice: don't suggest tip larger than fee cap
* core/types,internal: use correct eip1559 terminology for json marshalling
* eth, internal/ethapi: fix rebase problems
* internal/ethapi: fix rpc name of basefee
* internal/ethapi: address review concerns
* core, eth, internal, les: simplify gasprice oracle (#25)
* core, eth, internal, les: simplify gasprice oracle
* eth/gasprice: fix typo
* internal/ethapi: minor tweak in tx args
* internal/ethapi: calculate basefee for pending block
* internal/ethapi: fix panic
* internal/ethapi, eth/tracers: simplify txargs ToMessage
* internal/ethapi: remove unused param
* core, eth, internal: fix regressions wrt effective gas price in the evm
* eth/gasprice: drop weird debug println
* internal/jsre/deps: hack in 1559 gas conversions into embedded web3
* internal/jsre/deps: hack basFee to decimal conversion
* internal/ethapi: init feecap and tipcap for legacy txs too
* eth, graphql, internal, les: fix gas price suggestion on all combos
* internal/jsre/deps: handle decimal tipcap and feecap
* eth, internal: minor review fixes
* graphql, internal: export max fee cap RPC endpoint
* internal/ethapi: fix crash in transaction_args
* internal/ethapi: minor refactor to make the code safer
Co-authored-by: Ryan Schneider <ryanleeschneider@gmail.com>
Co-authored-by: lightclient@protonmail.com <lightclient@protonmail.com>
Co-authored-by: gary rong <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-06-02 13:13:10 +00:00
|
|
|
func (b *LesApiBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
|
|
|
|
return b.gpo.SuggestTipCap(ctx)
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:27:28 +00:00
|
|
|
func (b *LesApiBackend) FeeHistory(ctx context.Context, blockCount int, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error) {
|
2021-06-28 14:16:32 +00:00
|
|
|
return b.gpo.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles)
|
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func (b *LesApiBackend) ChainDb() ethdb.Database {
|
|
|
|
return b.eth.chainDb
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) AccountManager() *accounts.Manager {
|
|
|
|
return b.eth.accountManager
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2019-04-04 11:03:10 +00:00
|
|
|
func (b *LesApiBackend) ExtRPCEnabled() bool {
|
|
|
|
return b.extRPCEnabled
|
|
|
|
}
|
|
|
|
|
2021-02-23 12:09:19 +00:00
|
|
|
func (b *LesApiBackend) UnprotectedAllowed() bool {
|
|
|
|
return b.allowUnprotectedTxs
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:54:21 +00:00
|
|
|
func (b *LesApiBackend) RPCGasCap() uint64 {
|
2019-04-08 11:49:52 +00:00
|
|
|
return b.eth.config.RPCGasCap
|
|
|
|
}
|
|
|
|
|
2021-10-12 08:46:04 +00:00
|
|
|
func (b *LesApiBackend) RPCEVMTimeout() time.Duration {
|
|
|
|
return b.eth.config.RPCEVMTimeout
|
|
|
|
}
|
|
|
|
|
2020-06-17 07:46:31 +00:00
|
|
|
func (b *LesApiBackend) RPCTxFeeCap() float64 {
|
|
|
|
return b.eth.config.RPCTxFeeCap
|
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
func (b *LesApiBackend) BloomStatus() (uint64, uint64) {
|
2017-10-24 13:19:09 +00:00
|
|
|
if b.eth.bloomIndexer == nil {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
sections, _, _ := b.eth.bloomIndexer.Sections()
|
2018-08-28 07:08:16 +00:00
|
|
|
return params.BloomBitsBlocksClient, sections
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
func (b *LesApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
|
2017-10-24 13:19:09 +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 *LesApiBackend) Engine() consensus.Engine {
|
|
|
|
return b.eth.engine
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) CurrentHeader() *types.Header {
|
|
|
|
return b.eth.blockchain.CurrentHeader()
|
|
|
|
}
|
2021-01-25 13:36:39 +00:00
|
|
|
|
2022-09-07 18:25:58 +00:00
|
|
|
func (b *LesApiBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64, base *state.StateDB, readOnly bool, preferDisk bool) (*state.StateDB, tracers.StateReleaseFunc, error) {
|
2021-01-25 13:36:39 +00:00
|
|
|
return b.eth.stateAtBlock(ctx, block, reexec)
|
|
|
|
}
|
|
|
|
|
core, core/types: plain Message struct (#25977)
Here, the core.Message interface turns into a plain struct and
types.Message gets removed.
This is a breaking change to packages core and core/types. While we do
not promise API stability for package core, we do for core/types. An
exception can be made for types.Message, since it doesn't have any
purpose apart from invoking the state transition in package core.
types.Message was also marked deprecated by the same commit it
got added in, 4dca5d4db7 (November 2016).
The core.Message interface was added in December 2014, in commit
db494170dc, for the purpose of 'testing' state transitions. It's the
same change that made transaction struct fields private. Before that,
the state transition used *types.Transaction directly.
Over time, multiple implementations of the interface accrued across
different packages, since constructing a Message is required whenever
one wants to invoke the state transition. These implementations all
looked very similar, a struct with private fields exposing the fields
as accessor methods.
By changing Message into a struct with public fields we can remove all
these useless interface implementations. It will also hopefully
simplify future changes to the type with less updates to apply across
all of go-ethereum when a field is added to Message.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2023-03-09 13:19:12 +00:00
|
|
|
func (b *LesApiBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (*core.Message, vm.BlockContext, *state.StateDB, tracers.StateReleaseFunc, error) {
|
2021-01-25 13:36:39 +00:00
|
|
|
return b.eth.stateAtTransaction(ctx, block, txIndex, reexec)
|
|
|
|
}
|