From 4ea1c030bcc492b5b18990325ac878d8992cc594 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 10 Dec 2018 12:20:13 -0800 Subject: [PATCH] Give bootstrap leader one more token --- src/bin/genesis.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/genesis.rs b/src/bin/genesis.rs index 6b922f59c4..17683c0494 100644 --- a/src/bin/genesis.rs +++ b/src/bin/genesis.rs @@ -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> { let matches = App::new("solana-genesis")