From 048300c3d6d708f6f39354f50b177367278ab0d8 Mon Sep 17 00:00:00 2001 From: Loek van Gent Date: Tue, 17 Apr 2018 09:51:15 +0200 Subject: [PATCH] Change baseUrls to v2 Change the domain names of baseUrls to the new v2 API --- flutterwave/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flutterwave/utils.py b/flutterwave/utils.py index eb94043..d536257 100644 --- a/flutterwave/utils.py +++ b/flutterwave/utils.py @@ -15,8 +15,8 @@ def __init__(self, apiKey, merchantKey): self.merchantKey = merchantKey # BaseUrl - self.baseUrl = "http://staging1flutterwave.co:8080" - self.baseUrl_live = "https://prod1flutterwave.co:8181" + self.baseUrl = "https://flutterwavestagingv2.com" + self.baseUrl_live = "https://flutterwaveprodv2.com" # Routes self.ipCheckRoute = "/pwc/rest/fw/ipcheck/"