Skip to content

Commit

Permalink
feat(authorship): add gzip compression to zgt request
Browse files Browse the repository at this point in the history
  • Loading branch information
deblanco committed Oct 7, 2024
1 parent 1844da3 commit 4bf2fc5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ sha3 = { version = "0.9", default-features = false }
stability-rpc = { path = "./stability-rpc", default-features = false }
stability-rpc-api = { path = "./primitives/stability-rpc-api", default-features = false }
stbl-transaction-validator = { path = "./primitives/transaction-validator", default-features = false }
reqwest = { version = "0.11", features = ["json"] }
reqwest = { version = "0.11", features = ["json", "gzip"] }

# Arkworks
ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] }
Expand Down
2 changes: 1 addition & 1 deletion client/authorship/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sp-keystore = { workspace = true }
stability-runtime = { path = "./../../runtime", features = ["std"] }
sc-service = { workspace = true }
account = { workspace = true, features = ["std"] }
reqwest = { workspace = true, features = ["json"] }
reqwest = { workspace = true, features = ["json", "gzip"] }
serde = { workspace = true, features = ["derive"] }
bytes = { workspace = true }
hex = { workspace = true }
Expand Down

0 comments on commit 4bf2fc5

Please sign in to comment.