diff --git a/GMERemittance/Module/ExchangeRateViewControllerV2.swift b/GMERemittance/Module/ExchangeRateViewControllerV2.swift index f39d9ee5..bc0e1cba 100644 --- a/GMERemittance/Module/ExchangeRateViewControllerV2.swift +++ b/GMERemittance/Module/ExchangeRateViewControllerV2.swift @@ -75,6 +75,16 @@ class ExchangeRateViewControllerV2: UIViewController { let reciepientAmount = self.reciepientTextField.text! print("sender textfield \(senderAmount)") print("reciepientTextfield \(reciepientAmount)") + let recipientCurrency = self.selectedExchageRateModel?.currency ?? "" + + let param: [String: Any] = + [ + "cAmt" : senderAmount, + "pAmt" : reciepientAmount, + "cCurrency" : "KRW", + "pCurrency" : recipientCurrency + ] + // todo send to api for calculation }