From ea3da6db5e7b7b8a841629a674c46a491806f4dd Mon Sep 17 00:00:00 2001 From: Preyea Regmi Date: Wed, 8 Jul 2020 20:02:29 +0545 Subject: [PATCH] Cash pickup fixes --- .../cashpickuptowallet/gateway/CashPickupToWalletGateway.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/swifttech/remit/android/features/cashpickuptowallet/gateway/CashPickupToWalletGateway.java b/app/src/main/java/com/swifttech/remit/android/features/cashpickuptowallet/gateway/CashPickupToWalletGateway.java index 01687871..4d0ff3ed 100644 --- a/app/src/main/java/com/swifttech/remit/android/features/cashpickuptowallet/gateway/CashPickupToWalletGateway.java +++ b/app/src/main/java/com/swifttech/remit/android/features/cashpickuptowallet/gateway/CashPickupToWalletGateway.java @@ -22,8 +22,8 @@ public class CashPickupToWalletGateway extends PrivilegedGateway implements Cash JsonObject jsonObject=new JsonObject(); jsonObject.addProperty("userID",userID); jsonObject.addProperty("controlNumber",selectedControlNo); - jsonObject.addProperty("txnId",selectedControlNo); - jsonObject.addProperty("password",selectedControlNo); + jsonObject.addProperty("txnId",txnId); + jsonObject.addProperty("password",password); return HttpClientV2.getInstance().redeemCashPickup(auth,jsonObject); } }