Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit 76b2aee

Browse files
committed
Weird 60 tokens runs out of gas now
1 parent 2be1a1c commit 76b2aee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/setToken-base.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ contract("{Set}", (accounts) => {
249249

250250
// 60 is about the limit for the number of components in a Set
251251
// This is about ~2M Gas.
252-
describe("of 60 Component Set", () => {
252+
describe("of 50 Component Set", () => {
253253
it(`should work`, async () => {
254-
await deployStandardSetAndApprove(60);
254+
await deployStandardSetAndApprove(50);
255255

256256
quantitiesToTransfer = _.map(units, (unit) => unit.mul(standardQuantityIssued).div(gWei(1)));
257257

@@ -359,9 +359,9 @@ contract("{Set}", (accounts) => {
359359
});
360360
});
361361

362-
describe(`60 component set`, () => {
362+
describe(`50 component set`, () => {
363363
it(`should work`, async () => {
364-
await deployStandardSetAndIssue(60, standardQuantityIssued);
364+
await deployStandardSetAndIssue(50, standardQuantityIssued);
365365

366366
const redeemReceipt = await setToken.redeem(standardQuantityIssued, TX_DEFAULTS);
367367
const { logs } = redeemReceipt;

0 commit comments

Comments
 (0)