Skip to content

Commit

Permalink
Merge pull request vnpy#197 from xiaobear250/master
Browse files Browse the repository at this point in the history
修正futureOrderInfo方法的小Bug
  • Loading branch information
vnpy authored Dec 13, 2016
2 parents d1f196a + 88ae6fd commit 8fd71ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vn.okcoin/vnokcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def futureOrderInfo(self, symbol, expiry, orderid, status, page, length):
params['current_page'] = page
params['page_length'] = length

channel = 'ok_future%s_orderinfo'
channel = 'ok_future%s_orderinfo' %(self.currency)

self.sendTradingRequest(channel, params)

Expand Down
2 changes: 1 addition & 1 deletion vn.trader/okcoinGateway/vnokcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def futureOrderInfo(self, symbol, expiry, orderid, status, page, length):
params['current_page'] = page
params['page_length'] = length

channel = 'ok_future%s_orderinfo'
channel = 'ok_future%s_orderinfo' %(self.currency)

self.sendTradingRequest(channel, params)

Expand Down

0 comments on commit 8fd71ca

Please sign in to comment.