Skip to content

Commit d09a9a8

Browse files
committedJul 30, 2024··
Merge branch 'feat/moonpay/areFeesIncluded' of github.com:mahume/bitcore
2 parents ae5e196 + b1ed12c commit d09a9a8

File tree

1 file changed

+1
-0
lines changed
  • packages/bitcore-wallet-service/src/lib

1 file changed

+1
-0
lines changed
 

‎packages/bitcore-wallet-service/src/lib/server.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5269,6 +5269,7 @@ export class WalletService implements IWalletService {
52695269
if (req.body.showWalletAddressForm)
52705270
qs.push('showWalletAddressForm=' + encodeURIComponent(req.body.showWalletAddressForm));
52715271
if (req.body.paymentMethod) qs.push('paymentMethod=' + encodeURIComponent(req.body.paymentMethod));
5272+
if (req.body.areFeesIncluded) qs.push('areFeesIncluded=' + encodeURIComponent(req.body.areFeesIncluded));
52725273

52735274
const URL_SEARCH: string = `?${qs.join('&')}`;
52745275

0 commit comments

Comments
 (0)
Please sign in to comment.