summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkg/merchant/merchant.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/merchant/merchant.go b/pkg/merchant/merchant.go
index 154507b..59a99e9 100644
--- a/pkg/merchant/merchant.go
+++ b/pkg/merchant/merchant.go
@@ -113,6 +113,7 @@ func (m *Merchant) IsOrderPaid(orderId string) (string, error) {
req, _ := http.NewRequest("GET", m.BaseUrlPrivate+"/private/orders/"+orderId, nil)
req.Header.Set("Authorization", "secret-token:"+m.AccessToken)
resp, err := client.Do(req)
+ fmt.Println(req)
if nil != err {
return "", err
}