diff options
author | Sonic <sonic@dexon.org> | 2019-05-06 15:00:22 +0800 |
---|---|---|
committer | Sonic <sonic@dexon.org> | 2019-05-06 15:00:22 +0800 |
commit | 81ddbcce0eeab107014b47f05e7719122cfb53c2 (patch) | |
tree | a3cf8f40c3aafc2b28b3752c6f2eee336e2c4e8e /lds | |
parent | b4720965641332435d13cc3d3f54d3c17e7ed4e7 (diff) | |
download | dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar.gz dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar.bz2 dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar.lz dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar.xz dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.tar.zst dexon-81ddbcce0eeab107014b47f05e7719122cfb53c2.zip |
lds: rename LesApiBackend to LdsApiBackend
Diffstat (limited to 'lds')
-rw-r--r-- | lds/api_backend.go | 72 | ||||
-rw-r--r-- | lds/backend.go | 4 |
2 files changed, 38 insertions, 38 deletions
diff --git a/lds/api_backend.go b/lds/api_backend.go index dba9ac2ef..d5e5c76f7 100644 --- a/lds/api_backend.go +++ b/lds/api_backend.go @@ -38,36 +38,36 @@ import ( "github.com/dexon-foundation/dexon/rpc" ) -type LesApiBackend struct { +type LdsApiBackend struct { eth *LightDexon gpo *gasprice.Oracle } -func (b *LesApiBackend) ChainConfig() *params.ChainConfig { +func (b *LdsApiBackend) ChainConfig() *params.ChainConfig { return b.eth.chainConfig } -func (b *LesApiBackend) CurrentBlock() *types.Block { +func (b *LdsApiBackend) CurrentBlock() *types.Block { return types.NewBlockWithHeader(b.eth.BlockChain().CurrentHeader()) } -func (b *LesApiBackend) SetHead(number uint64) { +func (b *LdsApiBackend) SetHead(number uint64) { b.eth.protocolManager.downloader.Cancel() b.eth.blockchain.SetHead(number) } -func (b *LesApiBackend) HeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Header, error) { +func (b *LdsApiBackend) 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) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) { +func (b *LdsApiBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) { return b.eth.blockchain.GetHeaderByHash(hash), nil } -func (b *LesApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) { +func (b *LdsApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*types.Block, error) { header, err := b.HeaderByNumber(ctx, blockNr) if header == nil || err != nil { return nil, err @@ -75,7 +75,7 @@ func (b *LesApiBackend) BlockByNumber(ctx context.Context, blockNr rpc.BlockNumb return b.GetBlock(ctx, header.Hash()) } -func (b *LesApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error) { +func (b *LdsApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc.BlockNumber) (*state.StateDB, *types.Header, error) { header, err := b.HeaderByNumber(ctx, blockNr) if header == nil || err != nil { return nil, nil, err @@ -83,120 +83,120 @@ func (b *LesApiBackend) StateAndHeaderByNumber(ctx context.Context, blockNr rpc. return light.NewState(ctx, header, b.eth.odr), header, nil } -func (b *LesApiBackend) GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error) { +func (b *LdsApiBackend) GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error) { return b.eth.blockchain.GetBlockByHash(ctx, blockHash) } -func (b *LesApiBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) { +func (b *LdsApiBackend) 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 } -func (b *LesApiBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error) { +func (b *LdsApiBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error) { if number := rawdb.ReadHeaderNumber(b.eth.chainDb, hash); number != nil { return light.GetBlockLogs(ctx, b.eth.odr, hash, *number) } return nil, nil } -func (b *LesApiBackend) GetTd(hash common.Hash) *big.Int { +func (b *LdsApiBackend) GetTd(hash common.Hash) *big.Int { return b.eth.blockchain.GetTdByHash(hash) } -func (b *LesApiBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header) (*vm.EVM, func() error, error) { +func (b *LdsApiBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header) (*vm.EVM, func() error, error) { state.SetBalance(msg.From(), math.MaxBig256) context := core.NewEVMContext(msg, header, b.eth.blockchain, nil) return vm.NewEVM(context, state, b.eth.chainConfig, vm.Config{}), state.Error, nil } -func (b *LesApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error { +func (b *LdsApiBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error { return b.eth.txPool.Add(ctx, signedTx) } -func (b *LesApiBackend) SendTxs(ctx context.Context, signedTxs []*types.Transaction) []error { +func (b *LdsApiBackend) SendTxs(ctx context.Context, signedTxs []*types.Transaction) []error { b.eth.txPool.AddBatch(ctx, signedTxs) return nil } -func (b *LesApiBackend) RemoveTx(txHash common.Hash) { +func (b *LdsApiBackend) RemoveTx(txHash common.Hash) { b.eth.txPool.RemoveTx(txHash) } -func (b *LesApiBackend) GetPoolTransactions() (types.Transactions, error) { +func (b *LdsApiBackend) GetPoolTransactions() (types.Transactions, error) { return b.eth.txPool.GetTransactions() } -func (b *LesApiBackend) GetPoolTransaction(txHash common.Hash) *types.Transaction { +func (b *LdsApiBackend) GetPoolTransaction(txHash common.Hash) *types.Transaction { return b.eth.txPool.GetTransaction(txHash) } -func (b *LesApiBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) { +func (b *LdsApiBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) { return b.eth.txPool.GetNonce(ctx, addr) } -func (b *LesApiBackend) Stats() (pending int, queued int) { +func (b *LdsApiBackend) 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) { +func (b *LdsApiBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) { return b.eth.txPool.Content() } -func (b *LesApiBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription { +func (b *LdsApiBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription { return b.eth.txPool.SubscribeNewTxsEvent(ch) } -func (b *LesApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription { +func (b *LdsApiBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription { return b.eth.blockchain.SubscribeChainEvent(ch) } -func (b *LesApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription { +func (b *LdsApiBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription { return b.eth.blockchain.SubscribeChainHeadEvent(ch) } -func (b *LesApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription { +func (b *LdsApiBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription { return b.eth.blockchain.SubscribeChainSideEvent(ch) } -func (b *LesApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription { +func (b *LdsApiBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription { return b.eth.blockchain.SubscribeLogsEvent(ch) } -func (b *LesApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription { +func (b *LdsApiBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription { return b.eth.blockchain.SubscribeRemovedLogsEvent(ch) } -func (b *LesApiBackend) Downloader() ethapi.Downloader { +func (b *LdsApiBackend) Downloader() ethapi.Downloader { return b.eth.Downloader() } -func (b *LesApiBackend) ProtocolVersion() int { +func (b *LdsApiBackend) ProtocolVersion() int { return b.eth.LesVersion() + 10000 } -func (b *LesApiBackend) SuggestPrice(ctx context.Context) (*big.Int, error) { +func (b *LdsApiBackend) SuggestPrice(ctx context.Context) (*big.Int, error) { return b.gpo.SuggestPrice(ctx) } -func (b *LesApiBackend) ChainDb() ethdb.Database { +func (b *LdsApiBackend) ChainDb() ethdb.Database { return b.eth.chainDb } -func (b *LesApiBackend) EventMux() *event.TypeMux { +func (b *LdsApiBackend) EventMux() *event.TypeMux { return b.eth.eventMux } -func (b *LesApiBackend) AccountManager() *accounts.Manager { +func (b *LdsApiBackend) AccountManager() *accounts.Manager { return b.eth.accountManager } -func (b *LesApiBackend) RPCGasCap() *big.Int { +func (b *LdsApiBackend) RPCGasCap() *big.Int { return b.eth.config.RPCGasCap } -func (b *LesApiBackend) BloomStatus() (uint64, uint64) { +func (b *LdsApiBackend) BloomStatus() (uint64, uint64) { if b.eth.bloomIndexer == nil { return 0, 0 } @@ -204,7 +204,7 @@ func (b *LesApiBackend) BloomStatus() (uint64, uint64) { return params.BloomBitsBlocksClient, sections } -func (b *LesApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) { +func (b *LdsApiBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) { for i := 0; i < bloomFilterThreads; i++ { go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests) } diff --git a/lds/backend.go b/lds/backend.go index d3bbe0e03..e36d2682c 100644 --- a/lds/backend.go +++ b/lds/backend.go @@ -65,7 +65,7 @@ type LightDexon struct { bloomRequests chan chan *bloombits.Retrieval // Channel receiving bloom data retrieval requests bloomIndexer *core.ChainIndexer - ApiBackend *LesApiBackend + ApiBackend *LdsApiBackend eventMux *event.TypeMux engine consensus.Engine @@ -139,7 +139,7 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightDexon, error) { if leth.protocolManager, err = NewProtocolManager(leth.chainConfig, light.DefaultClientIndexerConfig, true, config.NetworkId, leth.eventMux, leth.engine, leth.peers, leth.blockchain, nil, chainDb, leth.odr, leth.relay, leth.serverPool, quitSync, &leth.wg); err != nil { return nil, err } - leth.ApiBackend = &LesApiBackend{leth, nil} + leth.ApiBackend = &LdsApiBackend{leth, nil} gpoParams := config.GPO if gpoParams.Default == nil { gpoParams.Default = config.MinerGasPrice |