From 47eceac4f15431f7fdf82a807fa3fddafdabb57b Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Mon, 2 Sep 2019 07:52:17 +0530 Subject: [PATCH] fix flosight api url --- ranchimallflo_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ranchimallflo_api.py b/ranchimallflo_api.py index 734a9b8..24a763b 100644 --- a/ranchimallflo_api.py +++ b/ranchimallflo_api.py @@ -574,7 +574,7 @@ async def getLatestBlockDetails(): async def checkhash(hash): # check if the hash is of a transaction - response = requests.get('{}transaction/{}'.format(apiUrl,hash)) + response = requests.get('{}tx/{}'.format(apiUrl,hash)) if response.status_code == 200: return jsonify(type='transaction') else: