Up drone request amount (#1051)

Multiple clients will request 500k each so up this to support them.
This commit is contained in:
sakridge 2018-08-23 15:30:35 -07:00 committed by GitHub
parent 6147e54686
commit 71319978df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ use thin_client::ThinClient;
use transaction::Transaction;
pub const TIME_SLICE: u64 = 60;
pub const REQUEST_CAP: u64 = 1_000_000;
pub const REQUEST_CAP: u64 = 10_000_000;
pub const DRONE_PORT: u16 = 9900;
#[derive(Serialize, Deserialize, Debug, Clone, Copy)]