Update expected keybase-pubkey location (#5104)

automerge
This commit is contained in:
Tyera Eulberg 2019-07-15 10:28:06 -06:00 committed by Grimes
parent 0c87928132
commit 92d78451b1
2 changed files with 5 additions and 5 deletions

View File

@ -265,10 +265,10 @@ Keybase:
1. Join https://keybase.io/ and complete the profile for your validator
2. Add your validator **identity pubkey** to Keybase:
* Create an empty file on your local computer called `solana_pubkey_<PUBKEY>`
* Create an empty file on your local computer called `validator-<PUBKEY>`
* In Keybase, navigate to the Files section, and upload your pubkey file to
your public folder: `/keybase/public/<KEYBASE_ID>`
a `solana` subdirectory in your public folder: `/keybase/public/<KEYBASE_ID>/solana`
* To check your pubkey, ensure you can successfully browse to
`https://keybase.pub/<KEYBASE_ID>/solana_pubkey_<PUBKEY>`
`https://keybase.pub/<KEYBASE_ID>/solana/validator-<PUBKEY>`
3. Add or update your `solana-validator-info` with your Keybase ID. The CLI will
verify the `solana_pubkey_<PUBKEY>` file
verify the `validator-<PUBKEY>` file

View File

@ -106,7 +106,7 @@ fn verify_keybase(
) -> Result<(), Box<dyn error::Error>> {
if let Some(keybase_id) = keybase_id.as_str() {
let url = format!(
"https://keybase.pub/{}/solana_pubkey_{:?}",
"https://keybase.pub/{}/solana/validator-{:?}",
keybase_id, validator_pubkey
);
let client = Client::new();