You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(`zcfSeat.stage, zcf.reallocate with only empty amounts`,asynct=>{const{ zcf }=awaitsetupZCFTest();const{zcfSeat: zcfSeat1}=zcf.makeEmptySeatKit();const{zcfSeat: zcfSeat2}=zcf.makeEmptySeatKit();constzcfMint=awaitzcf.makeZCFMint('RUN');const{ brand }=zcfMint.getIssuerRecord();// Get the amount allocated on zcfSeat1. It is empty for the RUN brand.constallocation=zcfSeat1.getAmountAllocated('RUN',brand);t.true(amountMath.isEmpty(allocation));// Stage zcfSeat2 with the allocation from zcfSeat1constzcfSeat2Staging=zcfSeat2.stage({RUN: allocation});// Stage zcfSeat1 with emptyconstzcfSeat1Staging=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.
The text was updated successfully, but these errors were encountered:
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.
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.
* 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
The following test fails:
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.
The text was updated successfully, but these errors were encountered: