From c576a707b086b11860a7e2ae6647b2c9163941b6 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 17 Jan 2020 00:02:05 -0700 Subject: [PATCH] Increase token cap (#7855) automerge --- faucet/src/faucet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faucet/src/faucet.rs b/faucet/src/faucet.rs index 6c07448f8..3d03c15ae 100644 --- a/faucet/src/faucet.rs +++ b/faucet/src/faucet.rs @@ -45,7 +45,7 @@ macro_rules! socketaddr { } pub const TIME_SLICE: u64 = 60; -pub const REQUEST_CAP: u64 = solana_sdk::native_token::LAMPORTS_PER_SOL * 1_000_000; +pub const REQUEST_CAP: u64 = solana_sdk::native_token::LAMPORTS_PER_SOL * 10_000_000; pub const FAUCET_PORT: u16 = 9900; pub const FAUCET_PORT_STR: &str = "9900";