mirror of
https://github.com/alexgo-io/stacks-subnets.git
synced 2026-01-12 16:53:24 +08:00
don't cast 'None' to string by accident
This commit is contained in:
@@ -472,7 +472,7 @@ class BlockstackAPIEndpointHandler(SimpleHTTPRequestHandler):
|
||||
|
||||
else:
|
||||
# current
|
||||
blockchain_id = str(decoded_token['payload']['blockchain_id'])
|
||||
blockchain_id = decoded_token['payload']['blockchain_id']
|
||||
app_private_key = str(decoded_token['payload']['app_private_key'])
|
||||
app_public_key = get_pubkey_hex(app_private_key)
|
||||
app_public_keys = decoded_token['payload']['app_public_keys']
|
||||
|
||||
Reference in New Issue
Block a user