Skip to content

Commit

Permalink
Set request cap to a reasonable number, based on 30min reset noted in…
Browse files Browse the repository at this point in the history
… issue #341
  • Loading branch information
CriesofCarrots committed Jun 22, 2018
1 parent e127fbe commit 18b12d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use thin_client::ThinClient;
use transaction::Transaction;

pub const TIME_SLICE: u64 = 60;
pub const REQUEST_CAP: u64 = 10_000_000;
pub const REQUEST_CAP: u64 = 150_000;

#[derive(Serialize, Deserialize, Debug)]
pub enum DroneRequest {
Expand Down

0 comments on commit 18b12d6

Please sign in to comment.