We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae5e196 + b1ed12c commit d09a9a8Copy full SHA for d09a9a8
packages/bitcore-wallet-service/src/lib/server.ts
@@ -5269,6 +5269,7 @@ export class WalletService implements IWalletService {
5269
if (req.body.showWalletAddressForm)
5270
qs.push('showWalletAddressForm=' + encodeURIComponent(req.body.showWalletAddressForm));
5271
if (req.body.paymentMethod) qs.push('paymentMethod=' + encodeURIComponent(req.body.paymentMethod));
5272
+ if (req.body.areFeesIncluded) qs.push('areFeesIncluded=' + encodeURIComponent(req.body.areFeesIncluded));
5273
5274
const URL_SEARCH: string = `?${qs.join('&')}`;
5275
0 commit comments