Skip to content

Commit

Permalink
Merge pull request #5263 from BitGo/coin-2037-disable-bulk-transaction
Browse files Browse the repository at this point in the history
fix(sdk-coin-rune): disable bulk transaction
  • Loading branch information
bhavidhingra authored Dec 12, 2024
2 parents 086d6af + b185544 commit d2698f7
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 d2698f7

Please sign in to comment.