We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92dab4a + b31452b commit 90cedeaCopy full SHA for 90cedea
modules/sdk-core/src/bitgo/wallet/wallet.ts
@@ -3141,7 +3141,9 @@ export class Wallet implements IWallet {
3141
}
3142
3143
const buildParams: PrebuildTransactionOptions = _.pick(params, this.prebuildWhitelistedParams());
3144
- buildParams.type = 'enabletoken';
+ if (!buildParams.type) {
3145
+ buildParams.type = 'enabletoken';
3146
+ }
3147
// Check if we build with intent
3148
if (this._wallet.multisigType === 'tss') {
3149
return [await this.prebuildTransaction(buildParams)];
0 commit comments