We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 746019a + abfa211 commit c8dcc42Copy full SHA for c8dcc42
1 file changed
modules/abstract-utxo/src/abstractUtxoCoin.ts
@@ -436,11 +436,11 @@ export abstract class AbstractUtxoCoin
436
437
protected supportedTxFormats: { psbt: boolean; legacy: boolean } = {
438
psbt: true,
439
- legacy: this.getChain() === 'btc' || this.getChain() === 'ltc',
+ legacy: this.getChain() === 'btc',
440
};
441
442
protected supportedSdkBackends: { utxolib: boolean; 'wasm-utxo': boolean } = {
443
- utxolib: this.getChain() === 'btc' || this.getChain() === 'ltc',
+ utxolib: this.getChain() === 'btc',
444
'wasm-utxo': true,
445
446
0 commit comments