From c18920cdbe817beb6767f5c5fe5c84683787f38e Mon Sep 17 00:00:00 2001 From: Aleksa Savic Date: Thu, 25 Apr 2024 11:44:52 +0200 Subject: [PATCH] Update proximity scores to 2 --- dkg/constants.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dkg/constants.py b/dkg/constants.py index 080b78c..afd9071 100644 --- a/dkg/constants.py +++ b/dkg/constants.py @@ -80,20 +80,20 @@ DEFAULT_HASH_FUNCTION_ID = 1 DEFAULT_PROXIMITY_SCORE_FUNCTIONS_PAIR_IDS = { "development": { - "hardhat1:31337": 1, + "hardhat1:31337": 2, "hardhat2:31337": 2, - "otp:2043": 1 + "otp:2043": 2 }, "devnet": { - "otp:2160": 1, + "otp:2160": 2, "gnosis:10200": 2, }, "testnet": { - "otp:20430": 1, + "otp:20430": 2, "gnosis:10200": 2, }, "mainnet": { - "otp:2043": 1, + "otp:2043": 2, "gnosis:100": 2, }, }