From 6684d84fbcd7cb6831fb492eb3fe4537d904cc92 Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Mon, 11 Mar 2019 23:34:16 +0000 Subject: [PATCH] Provide drone's host address while setting up staking account --- multinode-demo/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/multinode-demo/common.sh b/multinode-demo/common.sh index 280fed09e7..1aebe5adfa 100644 --- a/multinode-demo/common.sh +++ b/multinode-demo/common.sh @@ -158,12 +158,12 @@ setup_fullnode_staking() { # A little wrong, fund the staking account from the # to the node. Maybe next time consider doing this the opposite # way or use an ephemeral account - $solana_wallet --keypair "$fullnode_id_path" \ + $solana_wallet --keypair "$fullnode_id_path" --host "$drone_address" \ create-staking-account "$staker_id" 42 || return $? # as the staker, set the node as the delegate and the staker as # the vote-signer - $solana_wallet --keypair "$staker_id_path" \ + $solana_wallet --keypair "$staker_id_path" --host "$drone_address" \ configure-staking-account \ --delegate-account "$fullnode_id" \ --authorize-voter "$staker_id" || return $?