Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
nikugogoi committed Dec 27, 2023
1 parent 45fa8f1 commit 0667c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/codegen/src/templates/indexer-template.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,6 @@ export class Indexer implements IndexerInterface {
}

async getFullTransactions (txHashList: string[]): Promise<EthFullTransaction[]> {
return this._baseIndexer.getFullTransactions(txHashList)
return this._baseIndexer.getFullTransactions(txHashList);
}
}

0 comments on commit 0667c31

Please sign in to comment.