Skip to content

Commit

Permalink
Raise receipt limit temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Jan 7, 2022
1 parent ff732b1 commit 2886003
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
edition = "2021"
name = "graph-gateway"
version = "0.2.0"
version = "0.2.1"

[profile.release]
lto = "thin"

[dependencies]
actix-cors = "0.6.0-beta.3"
actix-web = "4.0.0-beta.11"
actix-cors = "=0.6.0-beta.4"
actix-http = "=3.0.0-beta.14"
actix-web = "=4.0.0-beta.13"
async-trait = "0.1"
bs58 = "0.4"
cost-model = {git = "ssh://[email protected]/graphprotocol/agora.git", rev = "48bf329"}
Expand All @@ -28,7 +29,7 @@ postgres-openssl = "0.5"
primitive-types = "0.8"
prometheus = "0.13"
rand = {version = "0.8", features = ["small_rng"]}
receipts = {git = "ssh://[email protected]/edgeandnode/receipts.git", rev = "ec03f80"}
receipts = {git = "ssh://[email protected]/edgeandnode/receipts.git", rev = "b01dd7b", features = ["use-neon"]}
reqwest = {version = "0.11", features = ["json"]}
secp256k1 = "0.20"
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async fn main() {
)
.service(
web::resource("/collect-receipts")
.app_data(web::PayloadConfig::new(16_000_000))
.app_data(web::PayloadConfig::new(25_000_000))
.app_data(web::Data::new(signer_key.clone()))
.route(web::post().to(handle_collect_receipts)),
);
Expand Down

0 comments on commit 2886003

Please sign in to comment.