diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/unlock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unlock.py b/src/unlock.py index f87e5b1..1638904 100644 --- a/src/unlock.py +++ b/src/unlock.py @@ -141,7 +141,7 @@ def packUnlockSpec(data): elif kind == 'star_coins': k, op, count, mode = data ops = ('==', '!=', '<', '>') - one = (4 << 6) | ops.index(op) + one = (0 << 6) | ops.index(op) if mode == 'unspent': modeID = 0x80 else: |