Skip to content

Commit

Permalink
Rename selectedFunctionArgsCV to selectedFunctionsArgsCV
Browse files Browse the repository at this point in the history
  • Loading branch information
BowTiedRadone committed Jan 29, 2025
1 parent 1c08524 commit a6b978c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions invariant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export const checkInvariants = (
.map((burnBlocks) => ({ ...r, ...burnBlocks }))
),
(r) => {
const selectedFunctionArgsCV = r.selectedFunctions.map(
const selectedFunctionsArgsCV = r.selectedFunctions.map(
(selectedFunction, index) =>
argsToCV(selectedFunction, r.selectedFunctionsArgsList[index])
);
Expand Down Expand Up @@ -270,7 +270,7 @@ export const checkInvariants = (
const { result: functionCallResult } = simnet.callPublicFn(
r.rendezvousContractId,
selectedFunction.name,
selectedFunctionArgsCV[index],
selectedFunctionsArgsCV[index],
sutCallerAddress
);

Expand Down

0 comments on commit a6b978c

Please sign in to comment.