Skip to content

Commit

Permalink
chore: whitespace changesd
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Jul 21, 2023
1 parent b704678 commit 0c50c06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/inter-protocol/src/auction/auctionBook.js
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ export const prepareAuctionBook = (baggage, zcf, makeRecorderKit) => {
const { remainingProceedsGoal } = state;
const { helper } = facets;
for (const [key, seatRecord] of prioritizedOffers) {
const { seat, price: p} = seatRecord;
const { seat, price: p } = seatRecord;
if (
remainingProceedsGoal &&
AmountMath.isEmpty(remainingProceedsGoal)
Expand Down
3 changes: 1 addition & 2 deletions packages/inter-protocol/src/auction/offerBook.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,10 @@ const makeGetBidDataRecorder = (bidDataKits, bidDataKitPromises) => {

const deleteNodeIfPresent = key => {
if (bidDataKitPromises.has(key) || bidDataKits.has(key)) {

// TODO(8063) delete node rather than erasing the data
return E(getBidDataRecorder(key)).writeFinal('');
}
}
};

return { getBidDataRecorder, deleteNodeIfPresent };
};
Expand Down

0 comments on commit 0c50c06

Please sign in to comment.