Added deterministic keypair generation.

- The Account Manager has a new subcommand, allowing generation of deterministic keys given a particular validator index.
 - Split functionality in generate_deterministic_keypair function
 - Fixed up READMEs to reflect new functionality & correct naming.
This commit is contained in:
Luke Anderson
2019-04-08 15:02:11 +10:00
parent a46f676f89
commit 177a351462
8 changed files with 69 additions and 15 deletions

View File

@@ -9,7 +9,7 @@ mod signer;
use crate::config::Config as ValidatorClientConfig;
use clap::{App, Arg};
use protos::services_grpc::ValidatorServiceClient;
use service::Service as ValidatorService;
use crate::service::Service as ValidatorService;
use slog::{error, info, o, Drain};
use types::Keypair;