Skip to content

Commit

Permalink
fix(sdk-coin-rune): disable bulk transaction
Browse files Browse the repository at this point in the history
TICKET: COIN-2037
  • Loading branch information
bhavidhingra committed Dec 12, 2024
1 parent 086d6af commit b185544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ export const coins = CoinMap.fromCoins([
8,
UnderlyingAsset.RUNE,
BaseUnit.RUNE,
COSMOS_SIDECHAIN_FEATURES
COSMOS_SIDECHAIN_FEATURES.filter((feature) => feature !== CoinFeature.BULK_TRANSACTION)
),
account(
'7281ab3b-0451-4ef9-b367-8623d9bcfd87',
Expand All @@ -1100,7 +1100,7 @@ export const coins = CoinMap.fromCoins([
8,
UnderlyingAsset.RUNE,
BaseUnit.RUNE,
COSMOS_SIDECHAIN_FEATURES
COSMOS_SIDECHAIN_FEATURES.filter((feature) => feature !== CoinFeature.BULK_TRANSACTION)
),
account(
'b473d5f0-1590-4edf-bc9f-813aff515a23',
Expand Down

0 comments on commit b185544

Please sign in to comment.