We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5865baf commit fdd57c5Copy full SHA for fdd57c5
modules/statics/src/lightning.ts
@@ -85,6 +85,8 @@ export function lightning(
85
}
86
87
const LNBTC_FEATURES = [...LightningCoin.DEFAULT_FEATURES];
88
+// TODO(BTC-2821): Add staking feature to lnbtc after testing
89
+const TLNBTC_FEATURES = [...LNBTC_FEATURES, CoinFeature.STAKING];
90
91
export const lightningCoins: Readonly<BaseCoin>[] = [
92
lightning(
@@ -103,6 +105,6 @@ export const lightningCoins: Readonly<BaseCoin>[] = [
103
105
Networks.test.lnbtc,
104
106
UnderlyingAsset.LNBTC,
107
BaseUnit.LNBTC,
- LNBTC_FEATURES
108
+ TLNBTC_FEATURES
109
),
110
];
0 commit comments