Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unecessary generic type
  • Loading branch information
chrstph-dvx committed Jul 15, 2024
commit a57924e448b5a6f9064c602178f9f8d3fd81d953
2 changes: 1 addition & 1 deletion src/actions/getMaxTimeVariation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type GetMaxTimeVariationReturnType = {

export async function getMaxTimeVariation<TChain extends Chain | undefined>(
client: PublicClient<Transport, TChain>,
args: GetMaxTimeVariationParameters<false>,
args: GetMaxTimeVariationParameters,
): Promise<GetMaxTimeVariationReturnType> {
const [delayBlocks, futureBlocks, delaySeconds, futureSeconds] = await client.readContract({
abi: sequencerInbox.abi,
Expand Down