Skip to content

Commit

Permalink
use correct tx options values
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Dec 30, 2024
1 parent 89de60e commit 4d5a485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/oracle/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 4d5a485

Please sign in to comment.