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 (
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/downloader"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/gasprice"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
|
|
"github.com/ethereum/go-ethereum/internal/ethapi"
|
|
|
|
"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
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LesApiBackend struct {
|
|
|
|
eth *LightEthereum
|
|
|
|
gpo *gasprice.LightPriceOracle
|
|
|
|
}
|
|
|
|
|
2016-11-02 12:44:13 +00:00
|
|
|
func (b *LesApiBackend) ChainConfig() *params.ChainConfig {
|
|
|
|
return b.eth.chainConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) CurrentBlock() *types.Block {
|
|
|
|
return types.NewBlockWithHeader(b.eth.BlockChain().CurrentHeader())
|
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func (b *LesApiBackend) SetHead(number uint64) {
|
|
|
|
b.eth.blockchain.SetHead(number)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error) {
|
|
|
|
if blockNr == rpc.LatestBlockNumber || blockNr == rpc.PendingBlockNumber {
|
|
|
|
return b.eth.blockchain.CurrentHeader(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.eth.blockchain.GetHeaderByNumberOdr(ctx, uint64(blockNr))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) {
|
|
|
|
header, err := b.HeaderByNumber(ctx, blockNr)
|
|
|
|
if header == nil || err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b.GetBlock(ctx, header.Hash())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (ethapi.State, *types.Header, error) {
|
|
|
|
header, err := b.HeaderByNumber(ctx, blockNr)
|
|
|
|
if header == nil || err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return light.NewLightState(light.StateTrieID(header), b.eth.odr), header, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error) {
|
|
|
|
return b.eth.blockchain.GetBlockByHash(ctx, blockHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) GetReceipts(ctx context.Context, blockHash common.Hash) (types.Receipts, error) {
|
|
|
|
return light.GetBlockReceipts(ctx, b.eth.odr, blockHash, core.GetBlockNumber(b.eth.chainDb, blockHash))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) GetTd(blockHash common.Hash) *big.Int {
|
|
|
|
return b.eth.blockchain.GetTdByHash(blockHash)
|
|
|
|
}
|
|
|
|
|
2017-02-08 12:39:26 +00:00
|
|
|
func (b *LesApiBackend) GetVMEnv(ctx context.Context, msg core.Message, state ethapi.State, header *types.Header) (*vm.EVM, func() error, error) {
|
2016-10-14 03:51:29 +00:00
|
|
|
stateDb := state.(*light.LightState).Copy()
|
2016-11-02 12:44:13 +00:00
|
|
|
addr := msg.From()
|
2016-10-14 03:51:29 +00:00
|
|
|
from, err := stateDb.GetOrNewStateObject(ctx, addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
from.SetBalance(common.MaxBig)
|
2016-12-06 01:16:03 +00:00
|
|
|
|
|
|
|
vmstate := light.NewVMState(ctx, stateDb)
|
|
|
|
context := core.NewEVMContext(msg, header, b.eth.blockchain)
|
2017-02-08 12:39:26 +00:00
|
|
|
return vm.NewEVM(context, vmstate, b.eth.chainConfig, vm.Config{}), vmstate.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)
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) Downloader() *downloader.Downloader {
|
|
|
|
return b.eth.Downloader()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) ProtocolVersion() int {
|
|
|
|
return b.eth.LesVersion() + 10000
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) SuggestPrice(ctx context.Context) (*big.Int, error) {
|
|
|
|
return b.gpo.SuggestPrice(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) ChainDb() ethdb.Database {
|
|
|
|
return b.eth.chainDb
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) EventMux() *event.TypeMux {
|
|
|
|
return b.eth.eventMux
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *LesApiBackend) AccountManager() *accounts.Manager {
|
|
|
|
return b.eth.accountManager
|
|
|
|
}
|