aboutsummaryrefslogtreecommitdiffstats
path: root/lds
diff options
context:
space:
mode:
authorSonic <sonic@dexon.org>2019-05-06 14:57:13 +0800
committerSonic <sonic@dexon.org>2019-05-06 14:57:13 +0800
commit9c162aac1a4bc1d97d882708e361f20501b9c8ec (patch)
tree0cb08a48aff4231567c83d29632c02410c89bf22 /lds
parent71e85172ef2886a6caa75cfe94e918417ae6a629 (diff)
downloaddexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar.gz
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar.bz2
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar.lz
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar.xz
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.tar.zst
dexon-9c162aac1a4bc1d97d882708e361f20501b9c8ec.zip
lds: rename lesCommon to ldsCommon
Diffstat (limited to 'lds')
-rw-r--r--lds/backend.go4
-rw-r--r--lds/commons.go8
-rw-r--r--lds/helper_test.go2
-rw-r--r--lds/server.go4
4 files changed, 9 insertions, 9 deletions
diff --git a/lds/backend.go b/lds/backend.go
index 09cf36f6d..06c734791 100644
--- a/lds/backend.go
+++ b/lds/backend.go
@@ -46,7 +46,7 @@ import (
)
type LightDexon struct {
- lesCommons
+ ldsCommons
odr *LesOdr
relay *LesTxRelay
@@ -92,7 +92,7 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightDexon, error) {
quitSync := make(chan struct{})
leth := &LightDexon{
- lesCommons: lesCommons{
+ ldsCommons: ldsCommons{
chainDb: chainDb,
config: config,
iConfig: light.DefaultClientIndexerConfig,
diff --git a/lds/commons.go b/lds/commons.go
index df94d35b1..29a8f8d66 100644
--- a/lds/commons.go
+++ b/lds/commons.go
@@ -30,8 +30,8 @@ import (
"github.com/dexon-foundation/dexon/params"
)
-// lesCommons contains fields needed by both server and client.
-type lesCommons struct {
+// ldsCommons contains fields needed by both server and client.
+type ldsCommons struct {
config *eth.Config
iConfig *light.IndexerConfig
chainDb ethdb.Database
@@ -51,7 +51,7 @@ type NodeInfo struct {
}
// makeProtocols creates protocol descriptors for the given LES versions.
-func (c *lesCommons) makeProtocols(versions []uint) []p2p.Protocol {
+func (c *ldsCommons) makeProtocols(versions []uint) []p2p.Protocol {
protos := make([]p2p.Protocol, len(versions))
for i, version := range versions {
version := version
@@ -75,7 +75,7 @@ func (c *lesCommons) makeProtocols(versions []uint) []p2p.Protocol {
}
// nodeInfo retrieves some protocol metadata about the running host node.
-func (c *lesCommons) nodeInfo() interface{} {
+func (c *ldsCommons) nodeInfo() interface{} {
var cht params.TrustedCheckpoint
sections, _, _ := c.chtIndexer.Sections()
sections2, _, _ := c.bloomTrieIndexer.Sections()
diff --git a/lds/helper_test.go b/lds/helper_test.go
index 108d42c9c..66cd069d3 100644
--- a/lds/helper_test.go
+++ b/lds/helper_test.go
@@ -181,7 +181,7 @@ func newTestProtocolManager(lightSync bool, blocks int, generator func(int, *cor
return nil, err
}
if !lightSync {
- srv := &LesServer{lesCommons: lesCommons{protocolManager: pm}}
+ srv := &LesServer{ldsCommons: ldsCommons{protocolManager: pm}}
pm.server = srv
srv.defParams = &flowcontrol.ServerParams{
diff --git a/lds/server.go b/lds/server.go
index f45b0fa44..1878917c0 100644
--- a/lds/server.go
+++ b/lds/server.go
@@ -39,7 +39,7 @@ import (
)
type LesServer struct {
- lesCommons
+ ldsCommons
fcManager *flowcontrol.ClientManager // nil if our node is client only
fcCostStats *requestCostStats
@@ -62,7 +62,7 @@ func NewLesServer(eth *eth.Ethereum, config *eth.Config) (*LesServer, error) {
}
srv := &LesServer{
- lesCommons: lesCommons{
+ ldsCommons: ldsCommons{
config: config,
chainDb: eth.ChainDb(),
iConfig: light.DefaultServerIndexerConfig,