From d8250a84d91805ddbf2661be9603a541ede6115a Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Thu, 6 Aug 2020 18:13:30 -0500 Subject: [PATCH] Tweak tip number to be past QS --- rootfs/standard/var/www/mynode/thread_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs/standard/var/www/mynode/thread_functions.py b/rootfs/standard/var/www/mynode/thread_functions.py index 1cba3a42..f6d4d485 100644 --- a/rootfs/standard/var/www/mynode/thread_functions.py +++ b/rootfs/standard/var/www/mynode/thread_functions.py @@ -97,7 +97,7 @@ def update_bitcoin_main_info_thread(): bitcoin_block_height = get_bitcoin_block_height() mynode_block_height = get_mynode_block_height() remaining = bitcoin_block_height - mynode_block_height - if remaining == 0 and bitcoin_block_height > 600000: + if remaining == 0 and bitcoin_block_height > 630000: if not os.path.isfile(BITCOIN_SYNCED_FILE): open(BITCOIN_SYNCED_FILE, 'a').close() # touch file elif remaining > 18: