Increase drone airdrop request cap to 1_000_000 SOL (#6497)

This commit is contained in:
Dan Albert 2019-10-22 13:35:52 -06:00 committed by Michael Vines
parent e6438098e1
commit 5c7735c40f
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ macro_rules! socketaddr {
}
pub const TIME_SLICE: u64 = 60;
pub const REQUEST_CAP: u64 = 100_000_000_000_000;
pub const REQUEST_CAP: u64 = solana_sdk::native_token::SOL_LAMPORTS * 1_000_000;
pub const DRONE_PORT: u16 = 9900;
pub const DRONE_PORT_STR: &str = "9900";