Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Dec 18, 2024
1 parent 8b8b1e8 commit 1f3ab9a
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
64 changes: 32 additions & 32 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 @@ -48,7 +48,7 @@ serde_json = { version = "1.0.116", features = ["raw_value"] }
serde_with = "3.8.1"
snmalloc-rs = "0.3"
tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "1c6e29f" }
thegraph-core = { version = "=0.9.1", features = [
thegraph-core = { version = "0.9.2", features = [
"alloy-contract",
"alloy-signer-local",
"attestation",
Expand Down
2 changes: 1 addition & 1 deletion src/network/poi_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl PoiFilter {

deployments
.iter()
.filter(|deployment| match blocklist.get(deployment) {
.filter(|deployment| match blocklist.get(*deployment) {
None => false,
Some(blocklist) => blocklist.iter().any(|(block, poi)| {
pois.get(&(**deployment, *block))
Expand Down
2 changes: 1 addition & 1 deletion src/reports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl Reporter {
.iter()
.map(|indexer_request| IndexerQueryProtobuf {
indexer: indexer_request.indexer.to_vec(),
deployment: indexer_request.deployment.as_ref().to_vec(),
deployment: indexer_request.deployment.to_vec(),
allocation: indexer_request.receipt.allocation().to_vec(),
indexed_chain: indexer_request.subgraph_chain.clone(),
url: indexer_request.url.clone(),
Expand Down

0 comments on commit 1f3ab9a

Please sign in to comment.