Skip to content

Commit

Permalink
remove temporary filtering of stored balance payin offerings
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-tbd committed Oct 31, 2024
1 parent 7d78897 commit 3a86643
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions lib/features/tbdex/tbdex_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,7 @@ class TbdexService {
);
}

// TODO(ethan-tbd): remove later, temporarily filter out stored balance payin offerings
final filteredOfferingsMap = offeringsMap.map(
(key, value) => MapEntry(
key,
value
.where(
(offering) =>
offering.data.payin.methods.firstOrNull?.kind !=
'USD_STOREDBAL_PAYIN',
)
.toList(),
),
);

return filteredOfferingsMap;
return offeringsMap;
}

Future<AccountBalance> getAccountBalance(
Expand Down

0 comments on commit 3a86643

Please sign in to comment.