Skip to content

Commit

Permalink
Merge pull request #4651 from BitGo/BTC-0-allow-non-standard-signing-…
Browse files Browse the repository at this point in the history
…on-bulk

feat(wp): allow non-standard signing on bulk tx
  • Loading branch information
davidkaplanbitgo authored Jun 25, 2024
2 parents 312c310 + 214342f commit 1775eba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/abstract-utxo/src/abstractUtxoCoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,9 @@ export abstract class AbstractUtxoCoin extends BaseCoin {
}

async presignTransaction(params: PresignTransactionOptions): Promise<any> {
if (params.bulk && params.allowNonSegwitSigningWithoutPrevTx === undefined) {
return { ...params, allowNonSegwitSigningWithoutPrevTx: true };
}
return params;
}

Expand Down

0 comments on commit 1775eba

Please sign in to comment.