Skip to content

Commit

Permalink
Fix typo in dryrun query parameter.
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Viénot <[email protected]>
  • Loading branch information
svienot committed Dec 19, 2023
1 parent d735331 commit 0893222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function verifyContractsInSessionEndpoint(
throw new BadRequestError("There are currently no pending contracts.");
}

const dryRun = Boolean(req.query.dryRun)
const dryRun = Boolean(req.query.dryrun)
const receivedContracts: SendableContract[] = req.body.contracts;

const verifiable: ContractWrapperMap = {};
Expand Down

0 comments on commit 0893222

Please sign in to comment.