Skip to content

Commit

Permalink
Fix: moonpay sell url missing params added
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamboster committed Apr 20, 2024
1 parent 1f1e38a commit b999a65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/bitcore-wallet-service/src/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5229,6 +5229,8 @@ export class WalletService implements IWalletService {
qs.push('redirectURL=' + encodeURIComponent(req.body.redirectURL));

if (req.body.quoteCurrencyCode) qs.push('quoteCurrencyCode=' + encodeURIComponent(req.body.quoteCurrencyCode));
if (req.body.paymentMethod) qs.push('paymentMethod=' + encodeURIComponent(req.body.paymentMethod));
if (req.body.externalCustomerId) qs.push('externalCustomerId=' + encodeURIComponent(req.body.externalCustomerId));
if (req.body.refundWalletAddress) qs.push('refundWalletAddress=' + encodeURIComponent(req.body.refundWalletAddress));
if (req.body.lockAmount) qs.push('lockAmount=' + encodeURIComponent(req.body.lockAmount));
if (req.body.colorCode) qs.push('colorCode=' + encodeURIComponent(req.body.colorCode));
Expand Down

0 comments on commit b999a65

Please sign in to comment.