diff --git a/packages/graph-node/src/watcher.ts b/packages/graph-node/src/watcher.ts index c2d3217f..4f230014 100644 --- a/packages/graph-node/src/watcher.ts +++ b/packages/graph-node/src/watcher.ts @@ -176,11 +176,7 @@ export class GraphWatcher { // Skip for templates as they are added dynamically. if (address) { - const watchedContract = this._indexer.isContractAddressWatched(address); - - if (!watchedContract) { - await this._indexer.watchContract(address, name, true, startBlock); - } + await this._indexer.watchContract(address, name, true, startBlock); } } }