Skip to content

Commit d2698f7

Browse files
authored
Merge pull request #5263 from BitGo/coin-2037-disable-bulk-transaction
fix(sdk-coin-rune): disable bulk transaction
2 parents 086d6af + b185544 commit d2698f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/statics/src/coins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ export const coins = CoinMap.fromCoins([
10901090
8,
10911091
UnderlyingAsset.RUNE,
10921092
BaseUnit.RUNE,
1093-
COSMOS_SIDECHAIN_FEATURES
1093+
COSMOS_SIDECHAIN_FEATURES.filter((feature) => feature !== CoinFeature.BULK_TRANSACTION)
10941094
),
10951095
account(
10961096
'7281ab3b-0451-4ef9-b367-8623d9bcfd87',
@@ -1100,7 +1100,7 @@ export const coins = CoinMap.fromCoins([
11001100
8,
11011101
UnderlyingAsset.RUNE,
11021102
BaseUnit.RUNE,
1103-
COSMOS_SIDECHAIN_FEATURES
1103+
COSMOS_SIDECHAIN_FEATURES.filter((feature) => feature !== CoinFeature.BULK_TRANSACTION)
11041104
),
11051105
account(
11061106
'b473d5f0-1590-4edf-bc9f-813aff515a23',

0 commit comments

Comments
 (0)