Skip to content

Commit 1b6939c

Browse files
fix: epic branch lint (#972)
1 parent 6b1b65a commit 1b6939c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: src/clients/SpokePoolClient/SVMSpokePoolClient.ts

+10
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,14 @@ export class SvmSpokePoolClient extends SpokePoolClient {
192192
): Promise<FillStatus> {
193193
throw new Error("relayFillStatus not implemented for SVM");
194194
}
195+
196+
/**
197+
* Retrieves the fill status for an array of given relay data.
198+
* @param relayData The array relay data to retrieve the fill status for.
199+
* @param blockTag The block at which to query the fill status.
200+
* @returns The fill status for each of the given relay data.
201+
*/
202+
public fillStatusArray(_relayData: RelayData[], _blockTag?: number | "latest"): Promise<(FillStatus | undefined)[]> {
203+
throw new Error("fillStatusArray not implemented for SVM");
204+
}
195205
}

0 commit comments

Comments
 (0)