aboutsummaryrefslogtreecommitdiff
path: root/ccxt_wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'ccxt_wrapper.py')
-rw-r--r--ccxt_wrapper.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ccxt_wrapper.py b/ccxt_wrapper.py
index bedf84b..366586c 100644
--- a/ccxt_wrapper.py
+++ b/ccxt_wrapper.py
@@ -47,6 +47,8 @@ class poloniexE(poloniex):
47 self.session._parent = self 47 self.session._parent = self
48 48
49 def request_wrap(self, *args, **kwargs): 49 def request_wrap(self, *args, **kwargs):
50 kwargs["headers"]["X-market-id"] = str(self._parent._market.market_id)
51 kwargs["headers"]["X-user-id"] = str(self._parent._market.user_id)
50 try: 52 try:
51 r = self.origin_request(*args, **kwargs) 53 r = self.origin_request(*args, **kwargs)
52 self._parent._market.report.log_http_request(args[0], 54 self._parent._market.report.log_http_request(args[0],