increased version number and fixed a zenroom runtime bug

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2022-04-26 14:13:14 +02:00
parent 83cd391028
commit 7237df59ba
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ class Output(object):
elif len(public_keys) == 1 and not isinstance(public_keys[0], list): elif len(public_keys) == 1 and not isinstance(public_keys[0], list):
if isinstance(public_keys[0], Fulfillment): if isinstance(public_keys[0], Fulfillment):
ffill = public_keys[0] ffill = public_keys[0]
elif isinstance( public_keys[0], Fulfillment.ZenroomSha512Fulfillment): elif isinstance( public_keys[0], ZenroomSha256):
ffill = ZenroomSha256( ffill = ZenroomSha256(
public_key=base58.b58decode(public_keys[0])) public_key=base58.b58decode(public_keys[0]))
else: else:

View File

@ -3,7 +3,7 @@
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0 # Code is Apache-2.0 and docs are CC-BY-4.0
__version__ = '0.9.1' __version__ = '0.9.2'
__short_version__ = '0.9' __short_version__ = '0.9'
# Supported Tendermint versions # Supported Tendermint versions