aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSonic <sonic@dexon.org>2019-05-06 14:56:01 +0800
committerSonic <sonic@dexon.org>2019-05-06 14:56:01 +0800
commit71e85172ef2886a6caa75cfe94e918417ae6a629 (patch)
treedb2df5bda5a1ecde7516b68a24dc3d71e2e944f5
parentfb9741ac8feeab30be376a1574cb4e935f8d5ae2 (diff)
downloaddexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar.gz
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar.bz2
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar.lz
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar.xz
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.tar.zst
dexon-71e85172ef2886a6caa75cfe94e918417ae6a629.zip
lds: rename LightEthereum to LightDexon
-rw-r--r--cmd/faucet/faucet.go2
-rw-r--r--cmd/utils/flags.go2
-rw-r--r--ethstats/ethstats.go10
-rw-r--r--lds/api_backend.go2
-rw-r--r--lds/backend.go28
-rw-r--r--lds/bloombits.go2
-rw-r--r--mobile/geth.go2
7 files changed, 24 insertions, 24 deletions
diff --git a/cmd/faucet/faucet.go b/cmd/faucet/faucet.go
index 5a3e539e0..f7cc4b6af 100644
--- a/cmd/faucet/faucet.go
+++ b/cmd/faucet/faucet.go
@@ -243,7 +243,7 @@ func newFaucet(genesis *core.Genesis, port int, enodes []*discv5.Node, network u
// Assemble the ethstats monitoring and reporting service'
if stats != "" {
if err := stack.Register(func(ctx *node.ServiceContext) (node.Service, error) {
- var serv *lds.LightEthereum
+ var serv *lds.LightDexon
ctx.Service(&serv)
return ethstats.New(stats, nil, serv)
}); err != nil {
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 9ba6c5d38..b064c95d2 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -1398,7 +1398,7 @@ func RegisterEthStatsService(stack *node.Node, url string) {
var ethServ *eth.Ethereum
ctx.Service(&ethServ)
- var lesServ *lds.LightEthereum
+ var lesServ *lds.LightDexon
ctx.Service(&lesServ)
return ethstats.New(url, ethServ, lesServ)
diff --git a/ethstats/ethstats.go b/ethstats/ethstats.go
index e027e0fe5..f285eeca0 100644
--- a/ethstats/ethstats.go
+++ b/ethstats/ethstats.go
@@ -69,10 +69,10 @@ type blockChain interface {
// Service implements an Ethereum netstats reporting daemon that pushes local
// chain statistics up to a monitoring server.
type Service struct {
- server *p2p.Server // Peer-to-peer server to retrieve networking infos
- eth *eth.Ethereum // Full Ethereum service if monitoring a full node
- les *lds.LightEthereum // Light Ethereum service if monitoring a light node
- engine consensus.Engine // Consensus engine to retrieve variadic block fields
+ server *p2p.Server // Peer-to-peer server to retrieve networking infos
+ eth *eth.Ethereum // Full Ethereum service if monitoring a full node
+ les *lds.LightDexon // Light Ethereum service if monitoring a light node
+ engine consensus.Engine // Consensus engine to retrieve variadic block fields
node string // Name of the node to display on the monitoring page
pass string // Password to authorize access to the monitoring page
@@ -83,7 +83,7 @@ type Service struct {
}
// New returns a monitoring service ready for stats reporting.
-func New(url string, ethServ *eth.Ethereum, lesServ *lds.LightEthereum) (*Service, error) {
+func New(url string, ethServ *eth.Ethereum, lesServ *lds.LightDexon) (*Service, error) {
// Parse the netstats connection url
re := regexp.MustCompile("([^:@]*)(:([^@]*))?@(.+)")
parts := re.FindStringSubmatch(url)
diff --git a/lds/api_backend.go b/lds/api_backend.go
index 7b4469bc5..dba9ac2ef 100644
--- a/lds/api_backend.go
+++ b/lds/api_backend.go
@@ -39,7 +39,7 @@ import (
)
type LesApiBackend struct {
- eth *LightEthereum
+ eth *LightDexon
gpo *gasprice.Oracle
}
diff --git a/lds/backend.go b/lds/backend.go
index 62ddb8d4a..09cf36f6d 100644
--- a/lds/backend.go
+++ b/lds/backend.go
@@ -45,7 +45,7 @@ import (
rpc "github.com/dexon-foundation/dexon/rpc"
)
-type LightEthereum struct {
+type LightDexon struct {
lesCommons
odr *LesOdr
@@ -77,7 +77,7 @@ type LightEthereum struct {
wg sync.WaitGroup
}
-func New(ctx *node.ServiceContext, config *eth.Config) (*LightEthereum, error) {
+func New(ctx *node.ServiceContext, config *eth.Config) (*LightDexon, error) {
chainDb, err := eth.CreateDB(ctx, config, "lightchaindata")
if err != nil {
return nil, err
@@ -91,7 +91,7 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightEthereum, error) {
peers := newPeerSet()
quitSync := make(chan struct{})
- leth := &LightEthereum{
+ leth := &LightDexon{
lesCommons: lesCommons{
chainDb: chainDb,
config: config,
@@ -185,7 +185,7 @@ func (s *LightDummyAPI) Mining() bool {
// APIs returns the collection of RPC services the ethereum package offers.
// NOTE, some of these services probably need to be moved to somewhere else.
-func (s *LightEthereum) APIs() []rpc.API {
+func (s *LightDexon) APIs() []rpc.API {
return append(ethapi.GetAPIs(s.ApiBackend), []rpc.API{
{
Namespace: "eth",
@@ -211,26 +211,26 @@ func (s *LightEthereum) APIs() []rpc.API {
}...)
}
-func (s *LightEthereum) ResetWithGenesisBlock(gb *types.Block) {
+func (s *LightDexon) ResetWithGenesisBlock(gb *types.Block) {
s.blockchain.ResetWithGenesisBlock(gb)
}
-func (s *LightEthereum) BlockChain() *light.LightChain { return s.blockchain }
-func (s *LightEthereum) TxPool() *light.TxPool { return s.txPool }
-func (s *LightEthereum) Engine() consensus.Engine { return s.engine }
-func (s *LightEthereum) LesVersion() int { return int(ClientProtocolVersions[0]) }
-func (s *LightEthereum) Downloader() ethapi.Downloader { return s.protocolManager.downloader }
-func (s *LightEthereum) EventMux() *event.TypeMux { return s.eventMux }
+func (s *LightDexon) BlockChain() *light.LightChain { return s.blockchain }
+func (s *LightDexon) TxPool() *light.TxPool { return s.txPool }
+func (s *LightDexon) Engine() consensus.Engine { return s.engine }
+func (s *LightDexon) LesVersion() int { return int(ClientProtocolVersions[0]) }
+func (s *LightDexon) Downloader() ethapi.Downloader { return s.protocolManager.downloader }
+func (s *LightDexon) EventMux() *event.TypeMux { return s.eventMux }
// Protocols implements node.Service, returning all the currently configured
// network protocols to start.
-func (s *LightEthereum) Protocols() []p2p.Protocol {
+func (s *LightDexon) Protocols() []p2p.Protocol {
return s.makeProtocols(ClientProtocolVersions)
}
// Start implements node.Service, starting all internal goroutines needed by the
// Ethereum protocol implementation.
-func (s *LightEthereum) Start(srvr *p2p.Server) error {
+func (s *LightDexon) Start(srvr *p2p.Server) error {
log.Warn("Light client mode is an experimental feature")
s.startBloomHandlers(params.BloomBitsBlocksClient)
s.netRPCService = ethapi.NewPublicNetAPI(srvr, s.networkId)
@@ -243,7 +243,7 @@ func (s *LightEthereum) Start(srvr *p2p.Server) error {
// Stop implements node.Service, terminating all internal goroutines used by the
// Ethereum protocol.
-func (s *LightEthereum) Stop() error {
+func (s *LightDexon) Stop() error {
s.odr.Stop()
s.bloomIndexer.Close()
s.chtIndexer.Close()
diff --git a/lds/bloombits.go b/lds/bloombits.go
index 9dcfd52fc..79115b15b 100644
--- a/lds/bloombits.go
+++ b/lds/bloombits.go
@@ -43,7 +43,7 @@ const (
// startBloomHandlers starts a batch of goroutines to accept bloom bit database
// retrievals from possibly a range of filters and serving the data to satisfy.
-func (eth *LightEthereum) startBloomHandlers(sectionSize uint64) {
+func (eth *LightDexon) startBloomHandlers(sectionSize uint64) {
for i := 0; i < bloomServiceThreads; i++ {
go func() {
for {
diff --git a/mobile/geth.go b/mobile/geth.go
index d6a3d7f40..5e7abcd10 100644
--- a/mobile/geth.go
+++ b/mobile/geth.go
@@ -168,7 +168,7 @@ func NewNode(datadir string, config *NodeConfig) (stack *Node, _ error) {
// If netstats reporting is requested, do it
if config.EthereumNetStats != "" {
if err := rawStack.Register(func(ctx *node.ServiceContext) (node.Service, error) {
- var lesServ *lds.LightEthereum
+ var lesServ *lds.LightDexon
ctx.Service(&lesServ)
return ethstats.New(config.EthereumNetStats, nil, lesServ)