diff options
Diffstat (limited to 'indexer/interfaces.go')
-rw-r--r-- | indexer/interfaces.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 } |