Skip to content

Commit

Permalink
add merge bypass for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeandemeusy committed Jun 7, 2024
1 parent 84713c2 commit f43f0db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ct-app/core/components/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f43f0db

Please sign in to comment.