Skip to content

Commit abfa211

Browse files
OttoAllmendingerllm-git
andcommitted
feat(abstract-utxo): restrict utxolib to BTC only
Remove LTC from supportedTxFormats.legacy and supportedSdkBackends.utxolib, narrowing the trial from BTC+LTC to BTC only. Refs: T1-3245, T1-3280 Co-authored-by: llm-git <llm-git@ttll.de>
1 parent 7d688ef commit abfa211

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)