We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8093f74 commit 05f44a7Copy full SHA for 05f44a7
tests/tests/integration_tests.rs
@@ -823,6 +823,7 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
823
.await
824
.unwrap();
825
assert_eq!(None, resp.get("errors"));
826
+ println!("{}. resp: {:?}", block_number, resp);
827
resp["data"]["hash"].as_str().map(|s| s.to_owned())
828
}
829
@@ -863,6 +864,7 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
863
864
"blockHash": block_hash,
865
});
866
let resp = Subgraph::query_with_vars(FETCH_POI, vars).await?;
867
+ println!("{}. resp: {:?}", i, resp);
868
869
assert!(resp["data"]["proofOfIndexing"].is_string());
870
let poi = resp["data"]["proofOfIndexing"].as_str().unwrap();
0 commit comments