Add --keypair to avoid writing a new one to ~ in CI

This commit is contained in:
Michael Vines 2019-04-17 10:12:18 -07:00
parent eb185b9ea5
commit bc17edcda3
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ setup_vote_account() {
create-vote-account "$vote_id" "$node_id" $((stake - 1)) || return $? create-vote-account "$vote_id" "$node_id" $((stake - 1)) || return $?
fi fi
$solana_wallet --host "$drone_address" show-vote-account "$vote_id" $solana_wallet --keypair "$node_id_path" --host "$drone_address" show-vote-account "$vote_id"
return 0 return 0
} }