Fix bug in /condition_chains endpoint causing test failure.

pull/3576/head
derekpierre 2025-01-27 14:07:20 -05:00
parent ac5da6ce7e
commit 7e06339d5f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ def _make_rest_app(this_node, log: Logger) -> Flask:
# TODO: When non-evm chains are supported, bump the version.
# this can return a list of chain names or other verifiable identifiers.
payload = {"version": 1.0, "evm": list(this_node.condition_providers)}
payload = {"version": 1.0, "evm": list(this_node.condition_providers.providers)}
return Response(json.dumps(payload), mimetype="application/json")
@rest_app.route('/decrypt', methods=["POST"])