Skip to content

Commit c8dcc42

Browse files
Merge pull request #8835 from BitGo/otto/drop-ltc-utxolib
feat(abstract-utxo): restrict legacy format and utxolib backend to BTC only
2 parents 746019a + abfa211 commit c8dcc42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/abstract-utxo/src/abstractUtxoCoin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,11 @@ export abstract class AbstractUtxoCoin
436436

437437
protected supportedTxFormats: { psbt: boolean; legacy: boolean } = {
438438
psbt: true,
439-
legacy: this.getChain() === 'btc' || this.getChain() === 'ltc',
439+
legacy: this.getChain() === 'btc',
440440
};
441441

442442
protected supportedSdkBackends: { utxolib: boolean; 'wasm-utxo': boolean } = {
443-
utxolib: this.getChain() === 'btc' || this.getChain() === 'ltc',
443+
utxolib: this.getChain() === 'btc',
444444
'wasm-utxo': true,
445445
};
446446

0 commit comments

Comments
 (0)