Skip to content

Commit 3a3ed54

Browse files
authored
2 parents 1653e04 + 70cf590 commit 3a3ed54

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

modules/statics/src/utxo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ const BTC_FEATURES = [
111111
CoinFeature.CUSTODY_BITGO_SINGAPORE,
112112
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
113113
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_ONCHAIN,
114-
CoinFeature.STAKING,
115114
];
115+
const TBTC_FEATURES = [...BTC_FEATURES, CoinFeature.STAKING];
116116
const BTG_FEATURES = [
117117
...UtxoCoin.DEFAULT_FEATURES,
118118
CoinFeature.CUSTODY_BITGO_GERMANY,
@@ -202,7 +202,7 @@ export const utxoCoins: Readonly<BaseCoin>[] = [
202202
Networks.test.bitcoin,
203203
UnderlyingAsset.BTC,
204204
BaseUnit.BTC,
205-
BTC_FEATURES
205+
TBTC_FEATURES
206206
),
207207
utxo(
208208
'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
@@ -49,7 +49,6 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
4949
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
5050
CoinFeature.CUSTODY_BITGO_KOREA,
5151
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
52-
CoinFeature.STAKING,
5352
],
5453
},
5554
bch: {

0 commit comments

Comments
 (0)