Skip to content

Commit 5a462d9

Browse files
committed
fix
1 parent fb95259 commit 5a462d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/tests/integration_tests.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -863,13 +863,15 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
863863
proofOfIndexing(
864864
subgraph: $subgraph,
865865
blockNumber: $blockNumber,
866-
blockHash: $blockHash
866+
blockHash: $blockHash,
867+
indexer: $indexer
867868
) } "#;
868869

869870
let vars = json!({
870871
"subgraph": subgraph.deployment,
871872
"blockNumber": i,
872873
"blockHash": block_hash,
874+
"indexer": "0x0000000000000000000000000000000000000000"
873875
});
874876
let resp = Subgraph::query_with_vars(FETCH_POI, vars).await?;
875877
assert_eq!(None, resp.get("errors"));

0 commit comments

Comments
 (0)