Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zoe: reallocating empty amounts for seats that had no prior allocation for the brand #3033

Closed
katelynsills opened this issue May 4, 2021 · 0 comments · Fixed by #3036
Closed
Labels
bug~deprecated use the new Bug issue type instead

Comments

@katelynsills
Copy link
Contributor

The following test fails:

test(`zcfSeat.stage, zcf.reallocate with only empty amounts`, async t => {
  const { zcf } = await setupZCFTest();
  const { zcfSeat: zcfSeat1 } = zcf.makeEmptySeatKit();
  const { zcfSeat: zcfSeat2 } = zcf.makeEmptySeatKit();
  const zcfMint = await zcf.makeZCFMint('RUN');
  const { brand } = zcfMint.getIssuerRecord();

  // Get the amount allocated on zcfSeat1. It is empty for the RUN brand.
  const allocation = zcfSeat1.getAmountAllocated('RUN', brand);
  t.true(amountMath.isEmpty(allocation));

  // Stage zcfSeat2 with the allocation from zcfSeat1
  const zcfSeat2Staging = zcfSeat2.stage({ RUN: allocation });

  // Stage zcfSeat1 with empty
  const zcfSeat1Staging = zcfSeat1.stage({ RUN: amountMath.makeEmpty(brand) });

  zcf.reallocate(zcfSeat1Staging, zcfSeat2Staging);

  t.deepEqual(zcfSeat1.getCurrentAllocation(), {
    RUN: amountMath.make(0n, brand),
  });
  t.deepEqual(zcfSeat2.getCurrentAllocation(), {
    RUN: amountMath.make(0n, brand),
  });
});

It fails because reallocate checks that the number of brands before a reallocation and after a proposed reallocation are the same. This is meant to be a quick defense against a reallocation that allocates more tokens than existed previously, but it forgets about the possibility of empty amounts. We should allow for reallocations of empty amounts, even if the seats had no previous allocation for the brand.

@katelynsills katelynsills added the bug~deprecated use the new Bug issue type instead label May 4, 2021
Chris-Hibbert added a commit that referenced this issue May 12, 2021
 A bug was reported in #3032, #3034 worked around it, and #3033 fixed it.

This removes the test and workaround.

Removing the test seems to suppress the failure reported in #3079.
That's good in reducing (possibly) spurious failures in CI, but may
make it harder and less urgent to track down #3079.
Chris-Hibbert added a commit that referenced this issue May 20, 2021
 A bug was reported in #3032, #3034 worked around it, and #3033 fixed it.

This removes the test and workaround.

Removing the test seems to suppress the failure reported in #3079.
That's good in reducing (possibly) spurious failures in CI, but may
make it harder and less urgent to track down #3079.
Chris-Hibbert added a commit that referenced this issue May 21, 2021
* chore: clean-up a work-around for a bug that's been fixed

 A bug was reported in #3032, #3034 worked around it, and #3033 fixed it.

This removes the test and workaround.

Removing the test seems to suppress the failure reported in #3079.
That's good in reducing (possibly) spurious failures in CI, but may
make it harder and less urgent to track down #3079.

* test: reinstate the test, and update the comment

The test demonstrates that the underlying bug stays fixed.

* test: update test for to comport with the fix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug~deprecated use the new Bug issue type instead
Projects
None yet
1 participant