Give bootstrap leader one more token

This commit is contained in:
Michael Vines
2018-12-10 12:20:13 -08:00
parent 172e511e56
commit 4ea1c030bc

View File

@ -15,9 +15,10 @@ use std::path::Path;
/**
* Bootstrap leader gets two tokens:
* - one token to create an instance of the vote_program with
* - one token for the transaction fee
* - one second token to keep the node identity public key valid
*/
pub const BOOTSTRAP_LEADER_TOKENS: u64 = 2;
pub const BOOTSTRAP_LEADER_TOKENS: u64 = 3;
fn main() -> Result<(), Box<dyn error::Error>> {
let matches = App::new("solana-genesis")