Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed May 2, 2024
1 parent 77da4e2 commit 8ff2c7d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/inter-protocol/src/proposals/add-auction.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,16 @@ export const addAuction = async ({
const { Bid: _istIssuer, ...auctionIssuers } = allIssuers;
await Promise.all(
Object.keys(auctionIssuers).map(kwd =>
E(governedCreatorFacet).addBrand(auctionIssuers[kwd], kwd),
E(governedCreatorFacet).addBrand(
/** @type {Issuer<'nat'>} */ (auctionIssuers[kwd]),
kwd,
),
),
);

// don't overwrite auctioneerKit yet
newAuctioneerKit.resolve(
// @ts-expect-error XXX governance types
harden({
label: 'auctioneer',
creatorFacet: governedCreatorFacet,
Expand Down

0 comments on commit 8ff2c7d

Please sign in to comment.