From 2b6567a380919b5ffa3b235353275b212322f40f Mon Sep 17 00:00:00 2001 From: David Kaplan Date: Thu, 4 Dec 2025 11:26:10 -0500 Subject: [PATCH] feat(abstract-utxo): set default strict to true for paygo ver BTC-2841 TICKET: BTC-2841 --- .../src/transaction/fixedScript/explainTransaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/abstract-utxo/src/transaction/fixedScript/explainTransaction.ts b/modules/abstract-utxo/src/transaction/fixedScript/explainTransaction.ts index 00b98f5361..4c1625a6b3 100644 --- a/modules/abstract-utxo/src/transaction/fixedScript/explainTransaction.ts +++ b/modules/abstract-utxo/src/transaction/fixedScript/explainTransaction.ts @@ -385,7 +385,7 @@ export function explainPsbt( customChangePubs?: bitgo.RootWalletKeys | string[]; }, network: utxolib.Network, - { strict = false }: { strict?: boolean } = {} + { strict = true }: { strict?: boolean } = {} ): TransactionExplanationUtxolibPsbt { const payGoVerificationInfo = getPayGoVerificationInfo(psbt, network); if (payGoVerificationInfo) {