From 4d5a4859034f2710433531d861d3a8dec0723aa8 Mon Sep 17 00:00:00 2001 From: Marc Doerflinger Date: Mon, 30 Dec 2024 15:48:45 +0000 Subject: [PATCH] use correct tx options values --- src/app/api/oracle/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/oracle/route.ts b/src/app/api/oracle/route.ts index 745616d..d3a5aa7 100644 --- a/src/app/api/oracle/route.ts +++ b/src/app/api/oracle/route.ts @@ -236,7 +236,7 @@ async function resendRequest(reqId: string, flightProduct: FlightProduct, reques const txOpts = getTxOpts(); txOpts['gasLimit'] = GAS_LIMIT; - const txResp = await flightProduct.resendRequest(requestId, getTxOpts()); + const txResp = await flightProduct.resendRequest(requestId, txOpts); LOGGER.debug(`[${reqId}] waiting for tx: ${txResp.hash}`); const tx = await txResp.wait();