Skip to content

Commit

Permalink
test(multisigclient): increases proposal enddate to 1h
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewmeconry committed Nov 23, 2023
1 parent 550f9ca commit c168750
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe("Client Multisig", () => {
},
};
const ipfsUri = await multisigClient.methods.pinMetadata(metadata);
const endDate = new Date(0);
const endDate = new Date(Date.now() + 1000 * 60 * 60);
const proposalParams: CreateMultisigProposalParams = {
pluginAddress,
metadataUri: ipfsUri,
Expand Down

0 comments on commit c168750

Please sign in to comment.