Skip to content

Commit

Permalink
fix(loan): fix reallocate error in liquidation error recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Mar 29, 2021
1 parent 2288e60 commit b50117f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zoe/src/contracts/loan/scheduleLiquidation.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const scheduleLiquidation = (zcf, configWithBorrower) => {
// contract, kicking out any remaining seats.
zcf.reallocate(
lenderSeat.stage({ Collateral: allCollateral }),
lenderSeat.stage({}),
collateralSeat.stage({}),
);
zcf.shutdownWithFailure(err);
throw err;
Expand Down

0 comments on commit b50117f

Please sign in to comment.