From 92d78451b1d72d178649429d8467defc2cb4e6bb Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Mon, 15 Jul 2019 10:28:06 -0600 Subject: [PATCH] Update expected keybase-pubkey location (#5104) automerge --- book/src/testnet-participation.md | 8 ++++---- validator-info/src/validator_info.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/book/src/testnet-participation.md b/book/src/testnet-participation.md index 2e2e247768..bf4f23e12f 100644 --- a/book/src/testnet-participation.md +++ b/book/src/testnet-participation.md @@ -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_` + * Create an empty file on your local computer called `validator-` * In Keybase, navigate to the Files section, and upload your pubkey file to - your public folder: `/keybase/public/` + a `solana` subdirectory in your public folder: `/keybase/public//solana` * To check your pubkey, ensure you can successfully browse to - `https://keybase.pub//solana_pubkey_` + `https://keybase.pub//solana/validator-` 3. Add or update your `solana-validator-info` with your Keybase ID. The CLI will -verify the `solana_pubkey_` file +verify the `validator-` file diff --git a/validator-info/src/validator_info.rs b/validator-info/src/validator_info.rs index 20b8c6a69c..5c4209ce05 100644 --- a/validator-info/src/validator_info.rs +++ b/validator-info/src/validator_info.rs @@ -106,7 +106,7 @@ fn verify_keybase( ) -> Result<(), Box> { 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();