We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6e188 commit 20cd8a2Copy full SHA for 20cd8a2
src.ts/abi/interface.ts
@@ -1212,7 +1212,7 @@ export class Interface {
1212
*
1213
* If the matching event cannot be found, returns null.
1214
*/
1215
- parseLog(log: { topics: Array<string>, data: string}): null | LogDescription {
+ parseLog(log: { topics: ReadonlyArray<string>, data: string}): null | LogDescription {
1216
const fragment = this.getEvent(log.topics[0]);
1217
1218
if (!fragment || fragment.anonymous) { return null; }
0 commit comments