File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ $ inter bid list --from my-acct
570570 ? state . offerStatuses . entries ( )
571571 : current . liveOffers ;
572572 for ( const [ id , spec ] of entries ) {
573- const offerStatus = state . offerStatuses . get ( id ) || spec ;
573+ const offerStatus = state . offerStatuses . get ( String ( id ) ) || spec ;
574574 harden ( offerStatus ) ; // coalesceWalletState should do this
575575 // console.debug(offerStatus.invitationSpec);
576576 if ( ! matches ( offerStatus . invitationSpec , bidInvitationShape ) )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export const makeWalletStateCoalescer = (invitationBrand = undefined) => {
1919 * keyed by description; xxx assumes unique
2020 *
2121 * @type {Map<
22- * OfferId ,
22+ * string ,
2323 * {
2424 * acceptedIn: OfferId;
2525 * description: string;
You can’t perform that action at this time.
0 commit comments