Provide drone's host address while setting up staking account

This commit is contained in:
Pankaj Garg 2019-03-11 23:34:16 +00:00 committed by Grimes
parent 9eb7e63819
commit 8bba11367e
1 changed files with 2 additions and 2 deletions

View File

@ -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 $?