We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 908a848 commit 54337eaCopy full SHA for 54337ea
test-suite/fhevm/scripts/deploy-fhevm-stack.sh
@@ -432,6 +432,11 @@ configure_multicoprocessor_envs() {
432
set_env_value "$host_env" "NUM_COPROCESSORS" "$COPROCESSOR_COUNT"
433
set_env_value "$host_env" "COPROCESSOR_THRESHOLD" "$configured_threshold"
434
435
+ # Default 1/1 topology does not require deriving extra coprocessor keys.
436
+ if [[ "$COPROCESSOR_COUNT" -eq 1 ]]; then
437
+ return 0
438
+ fi
439
+
440
local gateway_mnemonic
441
gateway_mnemonic=$(get_env_value "$gateway_env" "MNEMONIC")
442
if [[ -z "$gateway_mnemonic" ]]; then
0 commit comments