Skip to content

Commit

Permalink
normalized query to the server
Browse files Browse the repository at this point in the history
  • Loading branch information
kcw-grunt committed Nov 6, 2022
1 parent 1245fd1 commit 15359d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loafwallet/BuyTableViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class BuyTableViewController: UITableViewController, SFSafariViewControllerDeleg
let timestamp = Int(appInstallDate.timeIntervalSince1970)

/// Production url request
let urlString = APIServer.baseUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&idate=\(timestamp)&uid=\(uuidString)&code=\(currencyCode)"
let urlString = APIServer.baseUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&code=\(currencyCode)&idate=\(timestamp)&uid=\(uuidString)"

//DEV: Local url request for API Server debugging
// let urlString = APIServer.localUrl + "moonpay/buy" + "?address=\(currentWalletAddress)&idate=\(timestamp)&uid=\(uuidString)&code=\(currencyCode)"
Expand Down

0 comments on commit 15359d1

Please sign in to comment.