Show stake pubkey
This commit is contained in:
parent
57036fbcc1
commit
9f678cc32a
|
@ -112,15 +112,17 @@ setup_validator_accounts() {
|
||||||
touch "$configured_flag"
|
touch "$configured_flag"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Identity account balance:"
|
||||||
|
(
|
||||||
|
set -x
|
||||||
|
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" balance
|
||||||
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
||||||
show-vote-account "$vote_pubkey"
|
show-vote-account "$vote_pubkey"
|
||||||
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
||||||
show-stake-account "$stake_pubkey"
|
show-stake-account "$stake_pubkey"
|
||||||
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
|
||||||
show-storage-account "$storage_pubkey"
|
show-storage-account "$storage_pubkey"
|
||||||
|
)
|
||||||
echo "Identity account balance:"
|
|
||||||
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" balance
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -468,6 +470,7 @@ EOF
|
||||||
======================[ $node_type configuration ]======================
|
======================[ $node_type configuration ]======================
|
||||||
identity pubkey: $identity_pubkey
|
identity pubkey: $identity_pubkey
|
||||||
vote pubkey: $vote_pubkey
|
vote pubkey: $vote_pubkey
|
||||||
|
stake pubkey: $stake_pubkey
|
||||||
storage pubkey: $storage_pubkey
|
storage pubkey: $storage_pubkey
|
||||||
ledger: $ledger_config_dir
|
ledger: $ledger_config_dir
|
||||||
accounts: $accounts_config_dir
|
accounts: $accounts_config_dir
|
||||||
|
|
Loading…
Reference in New Issue