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

refactor(vaultFactory!): vaultFactory use zcf.atomicRearrange #7901

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading