Skip to content

Commit 8ea855a

Browse files
Merge pull request #8873 from BitGo/otto/legacy-false-utxolib-false
feat(abstract-utxo): disable legacy tx format and utxolib backend for all coins
2 parents ae142e6 + b1b82de commit 8ea855a

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
@@ -439,11 +439,11 @@ export abstract class AbstractUtxoCoin
439439

440440
protected supportedTxFormats: { psbt: boolean; legacy: boolean } = {
441441
psbt: true,
442-
legacy: this.getChain() === 'btc',
442+
legacy: false,
443443
};
444444

445445
protected supportedSdkBackends: { utxolib: boolean; 'wasm-utxo': boolean } = {
446-
utxolib: this.getChain() === 'btc',
446+
utxolib: false,
447447
'wasm-utxo': true,
448448
};
449449

0 commit comments

Comments
 (0)