From f43f0db4a78061d38c1eae170457db1613edfef4 Mon Sep 17 00:00:00 2001 From: Jean Demeusy Date: Fri, 7 Jun 2024 16:20:55 +0200 Subject: [PATCH] add merge bypass for testing purposes --- ct-app/core/components/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ct-app/core/components/utils.py b/ct-app/core/components/utils.py index 77bc19dc..e732e0fc 100644 --- a/ct-app/core/components/utils.py +++ b/ct-app/core/components/utils.py @@ -73,9 +73,9 @@ def mergeDataSources( topo = next(filter(lambda t: t.node_address == address, topology), None) safe = next(filter(lambda s: s.node_address == address, safes), None) - ## TEMP SOLUTION TO ENFORCE DISTRIBUTION TO PEERS NOT LISTED BY THE SUBGRAPH ON STAGING - # if safe is None: - # safe = SubgraphEntry(address, "0.000015", "0x0", "10000") + # TEMP SOLUTION TO ENFORCE DISTRIBUTION TO PEERS NOT LISTED BY THE SUBGRAPH ON STAGING + if safe is None: + safe = SubgraphEntry(address, "0", "0x0", "0") if ( peer is None