We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57efcea commit bbde862Copy full SHA for bbde862
omnidex.py
@@ -26,7 +26,7 @@ def getOrderbook(lasttrade=0, lastpending=0):
26
if len(pending) > 0 and len(pending[0]) > 0:
27
pending=int(pending[0][0])
28
29
- if (trade > lasttrade or pending < lastpending):
+ if (trade > int(lasttrade) or pending < int(lastpending)):
30
AO=dbSelect("select distinct propertyiddesired, propertyidselling from activeoffers "
31
"where offerstate='active' order by propertyiddesired")
32
if len(AO) > 0:
0 commit comments