aboutsummaryrefslogtreecommitdiffstats
path: root/indexer
diff options
context:
space:
mode:
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
}