Skip to content

Commit b1b82de

Browse files
OttoAllmendingerllm-git
andcommitted
feat(abstract-utxo): disable legacy tx format and utxolib backend for all coins
Set supportedTxFormats.legacy and supportedSdkBackends.utxolib to false unconditionally, completing the rollout to all coins. Refs: T1-3245, T1-3280 Co-authored-by: llm-git <llm-git@ttll.de>
1 parent f9e509b commit b1b82de

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',
439+
legacy: false,
440440
};
441441

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

0 commit comments

Comments
 (0)