aboutsummaryrefslogtreecommitdiffstats
path: root/indexer
diff options
context:
space:
mode:
authorWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:31:08 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-09-17 16:57:29 +0800
commitac088de6322fc16ebe75c2e5554be73754bf1fe2 (patch)
tree086b7827d46a4d07b834cd94be73beaabb77b734 /indexer
parent67d565f3f0e398e99bef96827f729e3e4b0edf31 (diff)
downloadgo-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar.gz
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar.bz2
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar.lz
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar.xz
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.tar.zst
go-tangerine-ac088de6322fc16ebe75c2e5554be73754bf1fe2.zip
Rebrand as tangerine-network/go-tangerine
Diffstat (limited to 'indexer')
-rw-r--r--indexer/blockchain.go18
-rw-r--r--indexer/config.go4
-rw-r--r--indexer/interfaces.go4
3 files changed, 13 insertions, 13 deletions
diff --git a/indexer/blockchain.go b/indexer/blockchain.go
index 390a5fa64..a54fd57e7 100644
--- a/indexer/blockchain.go
+++ b/indexer/blockchain.go
@@ -3,15 +3,15 @@ package indexer
import (
"math/big"
- "github.com/dexon-foundation/dexon/common"
- "github.com/dexon-foundation/dexon/consensus"
- "github.com/dexon-foundation/dexon/core"
- "github.com/dexon-foundation/dexon/core/state"
- "github.com/dexon-foundation/dexon/core/types"
- "github.com/dexon-foundation/dexon/core/vm"
- "github.com/dexon-foundation/dexon/event"
- "github.com/dexon-foundation/dexon/params"
- "github.com/dexon-foundation/dexon/rlp"
+ "github.com/tangerine-network/go-tangerine/common"
+ "github.com/tangerine-network/go-tangerine/consensus"
+ "github.com/tangerine-network/go-tangerine/core"
+ "github.com/tangerine-network/go-tangerine/core/state"
+ "github.com/tangerine-network/go-tangerine/core/types"
+ "github.com/tangerine-network/go-tangerine/core/vm"
+ "github.com/tangerine-network/go-tangerine/event"
+ "github.com/tangerine-network/go-tangerine/params"
+ "github.com/tangerine-network/go-tangerine/rlp"
)
// ReadOnlyBlockChain defines safe reading blockchain interface by removing write
diff --git a/indexer/config.go b/indexer/config.go
index 0da9502a6..b6f327538 100644
--- a/indexer/config.go
+++ b/indexer/config.go
@@ -3,8 +3,8 @@ package indexer
import (
"plugin"
- "github.com/dexon-foundation/dexon/core"
- "github.com/dexon-foundation/dexon/dex/downloader"
+ "github.com/tangerine-network/go-tangerine/core"
+ "github.com/tangerine-network/go-tangerine/dex/downloader"
)
// Config is data sources related configs struct.
diff --git a/indexer/interfaces.go b/indexer/interfaces.go
index f35bc6547..647de7d81 100644
--- a/indexer/interfaces.go
+++ b/indexer/interfaces.go
@@ -10,10 +10,10 @@ type NewIndexerFunc = func(ReadOnlyBlockChain, Config) Indexer
// core.Blockhain, passed by initialization function, to receiving latest block
// event or other information query and interaction.
type Indexer interface {
- // Start is called by dex.Dexon if config is set.
+ // Start is called by dex.Tangerine if config is set.
Start() error
- // Stop is called by dex.Dexon if config is set and procedure is
+ // Stop is called by dex.Tangerine if config is set and procedure is
// terminating.
Stop() error
}