From 7f6126f79aa2263986ab509f3a11308b0e02dd16 Mon Sep 17 00:00:00 2001 From: rodgerjohnson Date: Fri, 30 Aug 2024 20:39:50 +0900 Subject: [PATCH] Update comments --- src/collectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collectors.py b/src/collectors.py index fb707ee..8fa2b3f 100644 --- a/src/collectors.py +++ b/src/collectors.py @@ -427,7 +427,7 @@ def alive(self): self.client_version_payload) is not None def block_height(self): - """Returns blockheight after converting string hexadecimal value to an int""" + """Runs a cached query and returns blockheight after converting hex string value to an int""" result = self.interface.cached_json_rpc_post(self.block_height_payload) if result and isinstance(result, str) and result.startswith('0x'):