Skip to content

Commit

Permalink
hardcode ccpool deploy timestamp (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
Padraic-O-Mhuiris authored Mar 2, 2022
1 parent 87f8b5e commit 4bae413
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/convergentCurvePoolTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,9 @@ describe("ConvergentCurvePool", function () {
});

it("Deploys pools", async () => {
const seconds = Math.round(new Date().getTime() / 1000);
const date = new Date("November 1, 2021 00:00:00");
const seconds = Math.round(date.getTime() / 1000);

await poolFactory.create(
baseAssetContract.address,
bondAssetContract.address,
Expand Down

0 comments on commit 4bae413

Please sign in to comment.