From 0da97dc06c004ecb77b8d5cc0b9188309c8c0753 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 9 Mar 2020 12:40:42 -0700 Subject: [PATCH] Remove warehouse node from trusted validators --- launch-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch-cluster.sh b/launch-cluster.sh index cd95c09..c621f4c 100755 --- a/launch-cluster.sh +++ b/launch-cluster.sh @@ -89,7 +89,7 @@ if [[ ! -d "$CLUSTER"/ledger ]]; then fi TRUSTED_VALIDATORS=() -for id in "$CLUSTER"/*-identity.json; do +for id in "$CLUSTER"/{bootstrap-validator,api}-identity.json; do TRUSTED_VALIDATORS+=($(solana-keygen pubkey "$id")) done