mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Add trampoline for zincrby
This commit is contained in:
parent
75ebebc757
commit
826902213c
1 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,9 @@ def redis_lpop(k):
|
||||||
def redis_lindex(k,n):
|
def redis_lindex(k,n):
|
||||||
return redisdb.lindex(k,n)
|
return redisdb.lindex(k,n)
|
||||||
|
|
||||||
|
def redis_zincrby(t,k,s):
|
||||||
|
return redisdb.zincrby(t,k,s)
|
||||||
|
|
||||||
def redis_delete(k):
|
def redis_delete(k):
|
||||||
return redisdb.delete(k)
|
return redisdb.delete(k)
|
||||||
|
|
||||||
|
@ -97,6 +100,7 @@ def CompatibilityCheck():
|
||||||
if not p.rpush: raise RuntimeError('rpush call not found')
|
if not p.rpush: raise RuntimeError('rpush call not found')
|
||||||
if not p.lpop: raise RuntimeError('lpop call not found')
|
if not p.lpop: raise RuntimeError('lpop call not found')
|
||||||
if not p.lindex: raise RuntimeError('lindex call not found')
|
if not p.lindex: raise RuntimeError('lindex call not found')
|
||||||
|
if not p.zincrby: raise RuntimeError('zincrby call not found')
|
||||||
if not p.execute: raise RuntimeError('execute call not found')
|
if not p.execute: raise RuntimeError('execute call not found')
|
||||||
if not p.delete: raise RuntimeError('delete call not found')
|
if not p.delete: raise RuntimeError('delete call not found')
|
||||||
except Exception,e:
|
except Exception,e:
|
||||||
|
|
Loading…
Reference in a new issue