Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 96c0e24

Browse files
committed
CR fix
1 parent 9858c67 commit 96c0e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/proposals/simulateExistingProposal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function simulateExistingProposal(proposalId: string, hre: HardhatR
1313
});
1414

1515
const proposalActions = await deployment.governor.getActions(proposalId);
16-
let valuesArray = [...proposalActions[1]].map((value) => value.toString());
16+
let valuesArray = proposalActions[1].map((value) => value.toString());
1717
console.log(`proposal targets: ${proposalActions.targets}`);
1818
console.log(`proposal values: ${valuesArray}`);
1919
console.log(`proposal calldatas: ${proposalActions.calldatas}`);

0 commit comments

Comments
 (0)