From 329d8a93ffd451e9ce94d7e03b42e56820392bad Mon Sep 17 00:00:00 2001 From: Alexander Eger Date: Mon, 12 Feb 2024 22:49:39 +0100 Subject: [PATCH] Change chain_id to chainId --- aquarius/app/assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquarius/app/assets.py b/aquarius/app/assets.py index 6233c13b..ec1d181e 100644 --- a/aquarius/app/assets.py +++ b/aquarius/app/assets.py @@ -419,7 +419,7 @@ def trigger_caching(): try: data = request.args if request.args else request.json tx_id = data.get("transactionId") - chain_id = data.get("chain_id") + chain_id = data.get("chainId") if not tx_id or not chain_id: return ( jsonify(error="Invalid transactionId or chain_id"),