From b380bdd54f54d21867d886dbdf2617d7e3e22057 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 18 Apr 2019 15:16:33 -0700 Subject: [PATCH] Flag vote account as configured once it has been configured --- multinode-demo/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/multinode-demo/common.sh b/multinode-demo/common.sh index 10cd50d246..991d65cc11 100644 --- a/multinode-demo/common.sh +++ b/multinode-demo/common.sh @@ -154,6 +154,8 @@ setup_vote_account() { # Fund the vote account from the node, with the node as the node_id $solana_wallet --keypair "$node_id_path" --host "$drone_address" \ create-vote-account "$vote_id" "$node_id" $((stake - 1)) || return $? + + touch "$vote_id_path".configured fi $solana_wallet --keypair "$node_id_path" --host "$drone_address" show-vote-account "$vote_id"