Skip to content

Commit 265f089

Browse files
authored
Merge pull request #6249 from BitGo/CAAS-183
fix(statics): remove staking feature for tbtc
2 parents 02a4f2a + b817d19 commit 265f089

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

modules/statics/src/utxo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export const utxoCoins: Readonly<BaseCoin>[] = [
210210
Networks.test.bitcoin,
211211
UnderlyingAsset.BTC,
212212
BaseUnit.BTC,
213-
BTC_FEATURES
213+
BTC_FEATURES.filter((f) => f !== CoinFeature.STAKING)
214214
),
215215
utxo(
216216
'a0d53dc9-2dcc-4ebb-a2d4-51983fe20da6',

modules/statics/test/unit/coins.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,6 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
441441
CoinFeature.CUSTODY_BITGO_KOREA,
442442
CoinFeature.CUSTODY_BITGO_SINGAPORE,
443443
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
444-
CoinFeature.STAKING,
445444
],
446445
},
447446
tbtcsig: {

0 commit comments

Comments
 (0)