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
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
2019-05-02 12:50:23 +00:00
|
|
|
"errors"
|
2015-12-16 03:26:23 +00:00
|
|
|
"math/big"
|
|
|
|
|
2019-05-27 13:51:49 +00:00
|
|
|
"github.com/ledgerwatch/turbo-geth/accounts"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/common"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/common/math"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/bloombits"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/rawdb"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/state"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/types"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/core/vm"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/eth/downloader"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/eth/gasprice"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/event"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/params"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/rpc"
|
2015-12-16 03:26:23 +00:00
|
|
|
)
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
// EthAPIBackend implements ethapi.Backend for full nodes
|
|
|
|
type EthAPIBackend struct {
|
2019-04-04 11:03:10 +00:00
|
|
|
extRPCEnabled 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.
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ChainConfig() *params.ChainConfig {
|
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) {
|
2017-03-22 00:37:24 +00:00
|
|
|
b.eth.protocolManager.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 {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending block is only known by the miner
|
2019-05-27 13:51:49 +00:00
|
|
|
if blockNr == rpc.PendingBlockNumber {
|
|
|
|
block := b.eth.miner.PendingBlock()
|
|
|
|
return block.NumberU64()
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
// Pending block is only known by the miner
|
|
|
|
if blockNr == rpc.PendingBlockNumber {
|
2016-11-30 09:48:48 +00:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2016-10-14 03:51:29 +00:00
|
|
|
return block.Header(), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-05-27 13:51:49 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2018-07-12 14:36:07 +00:00
|
|
|
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
|
|
|
|
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) {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending block is only known by the miner
|
2019-05-27 13:51:49 +00:00
|
|
|
if blockNr == rpc.PendingBlockNumber {
|
2016-11-30 09:48:48 +00:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2015-12-16 03:26:23 +00:00
|
|
|
return block, nil
|
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-05-27 13:51:49 +00:00
|
|
|
bn := b.resolveBlockNumber(blockNr)
|
|
|
|
return b.eth.blockchain.GetBlockByNumber(bn), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-25 06:29:53 +00:00
|
|
|
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
|
|
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) {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending state is only known by the miner
|
2019-05-27 13:51:49 +00:00
|
|
|
if blockNr == rpc.PendingBlockNumber {
|
|
|
|
block, state, _ := b.eth.miner.Pending()
|
2017-06-27 13:57:06 +00:00
|
|
|
return state, block.Header(), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
// Otherwise resolve the block number and return its state
|
2019-05-27 13:51:49 +00:00
|
|
|
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")
|
|
|
|
}
|
2019-05-27 13:51:49 +00:00
|
|
|
ds := state.NewDbState(b.eth.chainDb, bn)
|
|
|
|
stateDb := state.New(ds)
|
|
|
|
return stateDb, header, nil
|
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")
|
|
|
|
}
|
2019-05-27 13:51:49 +00:00
|
|
|
stateDb, _, err := b.eth.BlockChain().StateAt(header.Root, header.Number.Uint64())
|
2019-09-26 08:47:31 +00:00
|
|
|
return stateDb, header, err
|
|
|
|
}
|
|
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
|
2019-05-27 13:51:49 +00:00
|
|
|
if number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash); number != nil {
|
|
|
|
block := rawdb.ReadBlock(b.eth.chainDb, hash, *number)
|
|
|
|
dbstate := state.NewDbState(b.eth.chainDb, *number-1)
|
|
|
|
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)
|
|
|
|
receipt, err := core.ApplyTransaction(b.ChainConfig(), b.eth.blockchain, nil, gp, statedb, dbstate, header, tx, usedGas, vmConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
receipts = append(receipts, receipt)
|
|
|
|
}
|
|
|
|
return receipts, nil
|
|
|
|
}
|
|
|
|
return nil, nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.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 {
|
|
|
|
return nil, err
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetTd(blockHash common.Hash) *big.Int {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.blockchain.GetTdByHash(blockHash)
|
|
|
|
}
|
|
|
|
|
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) {
|
2017-06-27 13:57:06 +00:00
|
|
|
state.SetBalance(msg.From(), math.MaxBig256)
|
2015-12-16 03:26:23 +00:00
|
|
|
vmError := func() error { return nil }
|
2016-12-06 01:16:03 +00:00
|
|
|
|
2017-04-12 13:38:31 +00:00
|
|
|
context := core.NewEVMContext(msg, header, b.eth.BlockChain(), nil)
|
2019-03-27 11:23:08 +00:00
|
|
|
return vm.NewEVM(context, 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)
|
|
|
|
}
|
|
|
|
|
2019-12-10 11:39:14 +00:00
|
|
|
func (b *EthAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
|
|
return b.eth.miner.SubscribePendingLogs(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)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +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
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolTransaction(hash common.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
|
|
|
}
|
|
|
|
|
2019-05-13 11:41:10 +00:00
|
|
|
func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error) {
|
|
|
|
tx, blockHash, blockNumber, index := rawdb.ReadTransaction(b.eth.ChainDb(), txHash)
|
|
|
|
return tx, blockHash, blockNumber, index, nil
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr common.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()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.TxPool().Content()
|
|
|
|
}
|
|
|
|
|
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) ProtocolVersion() int {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.EthVersion()
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) EventMux() *event.TypeMux {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.EventMux()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) AccountManager() *accounts.Manager {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.AccountManager()
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2019-04-04 11:03:10 +00:00
|
|
|
func (b *EthAPIBackend) ExtRPCEnabled() bool {
|
|
|
|
return b.extRPCEnabled
|
|
|
|
}
|
|
|
|
|
2019-04-08 11:49:52 +00:00
|
|
|
func (b *EthAPIBackend) RPCGasCap() *big.Int {
|
|
|
|
return b.eth.config.RPCGasCap
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
|
2017-08-29 11:13:11 +00:00
|
|
|
sections, _, _ := b.eth.bloomIndexer.Sections()
|
|
|
|
return params.BloomBitsBlocks, sections
|
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
|
|
|
}
|
|
|
|
}
|