Skip to content

Commit

Permalink
refactor(vaultFactory!): vaultFactory use zcf.atomicRearrange
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Sep 4, 2024
1 parent 9ced650 commit ac5b128
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions packages/inter-protocol/src/vaultFactory/liquidation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { makeTracer } from '@agoric/internal';
import { observeIteration, subscribeEach } from '@agoric/notifier';
import { makeScalarMapStore } from '@agoric/store';
import { TimeMath } from '@agoric/time';
import { atomicRearrange } from '@agoric/zoe/src/contractSupport/index.js';
import { E } from '@endo/eventual-send';

import { AUCTION_START_DELAY, PRICE_LOCK_PERIOD } from '../auction/params.js';
Expand Down Expand Up @@ -302,7 +301,7 @@ export const getLiquidatableVaults = (
}

if (transfers.length > 0) {
atomicRearrange(zcf, harden(transfers));
zcf.atomicRearrange(harden(transfers));
}

return { vaultData, totalDebt, totalCollateral, liqSeat };
Expand Down
3 changes: 1 addition & 2 deletions packages/inter-protocol/src/vaultFactory/vaultDirector.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {
} from '@agoric/vat-data';
import { assertKeywordName } from '@agoric/zoe/src/cleanProposal.js';
import {
atomicRearrange,
makeRecorderTopic,
provideEmptySeat,
SubscriberShape,
Expand Down Expand Up @@ -231,7 +230,7 @@ const prepareVaultDirector = (
[mintSeat, mintReceiver, { Minted: kept }],
];
try {
atomicRearrange(zcf, harden(transfers));
zcf.atomicRearrange(harden(transfers));
} catch (e) {
console.error('mintAndTransfer failed to rearrange', e);
// If the rearrange fails, burn the newly minted tokens.
Expand Down
3 changes: 1 addition & 2 deletions packages/inter-protocol/src/vaultFactory/vaultManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ import {
} from '@agoric/vat-data';
import { TransferPartShape } from '@agoric/zoe/src/contractSupport/atomicTransfer.js';
import {
atomicRearrange,
ceilMultiplyBy,
floorDivideBy,
getAmountIn,
Expand Down Expand Up @@ -757,7 +756,7 @@ export const prepareVaultManagerKit = (
amounts,
]),
);
atomicRearrange(zcf, harden(transfers));
zcf.atomicRearrange(harden(transfers));
}

const { prioritizedVaults } = collateralEphemera(
Expand Down

0 comments on commit ac5b128

Please sign in to comment.