Skip to content

Commit

Permalink
fix: make zoeStorageModule correctly restart with zcfMints present.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Jun 16, 2023
1 parent cd6f2a4 commit f06a231
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/zoe/src/zoeService/zoeStorageManager.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { E } from '@endo/far';
import { AssetKind, makeDurableIssuerKit, AmountMath } from '@agoric/ertp';
import {
AssetKind,
makeDurableIssuerKit,
AmountMath,
prepareIssuerKit,
} from '@agoric/ertp';
import {
makeScalarBigMapStore,
provideDurableWeakMapStore,
Expand Down Expand Up @@ -117,7 +122,7 @@ export const makeZoeStorageManager = (
'zoeMintBaggageSet',
);
for (const issuerBaggage of zoeMintBaggageSet.values()) {
zoeMintBaggageSet(issuerBaggage);
prepareIssuerKit(issuerBaggage);
}

const makeZoeMint = prepareExoClass(
Expand Down

0 comments on commit f06a231

Please sign in to comment.