Skip to content

Commit 97c47af

Browse files
committed
Fix
1 parent 03e7354 commit 97c47af

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/indexer/src/pubsub/service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ export class PubSubService {
2222
destinationChainId: number,
2323
) {
2424
if (!this.cctpFinalizerTopic) {
25-
const topic = await this.pubSub.topic(
26-
this.config.pubSubCctpFinalizerTopic,
27-
);
25+
const topic = this.pubSub.topic(this.config.pubSubCctpFinalizerTopic);
2826
this.cctpFinalizerTopic = topic;
2927
}
3028
// the published payload is a base64 encoded JSON string. The JSON is

0 commit comments

Comments
 (0)