File tree Expand file tree Collapse file tree 3 files changed +17
-9
lines changed Expand file tree Collapse file tree 3 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -1865,6 +1865,12 @@ fn resolve_transaction_receipt(
18651865 //
18661866 // This could also be because the receipt is simply not available yet. For that case, we
18671867 // should retry until it becomes available.
1868+ debug ! (
1869+ logger, "no receipt returned" ;
1870+ "block_hash" =>
1871+ block_hash. to_string( ) ,
1872+ "tx_hash" => transaction_hash. to_string( ) ,
1873+ ) ;
18681874 Err ( IngestorError :: ReceiptUnavailable (
18691875 block_hash,
18701876 transaction_hash,
Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ RUN cd /graph-node \
3434FROM debian:buster-slim as graph-node
3535ENV RUST_LOG ""
3636ENV GRAPH_LOG ""
37- ENV EARLY_LOG_CHUNK_SIZE ""
37+ # ENV EARLY_LOG_CHUNK_SIZE ""
3838ENV ETHEREUM_RPC_PARALLEL_REQUESTS ""
39- ENV ETHEREUM_BLOCK_CHUNK_SIZE ""
39+ # ENV ETHEREUM_BLOCK_CHUNK_SIZE ""
4040ENV GRAPH_ETHEREUM_TARGET_TRIGGERS_PER_BLOCK_RANGE ""
41- ENV ETHEREUM_TRACE_STREAM_STEP_SIZE ""
42- ENV DISABLE_BLOCK_INGESTOR ""
43- ENV ETHEREUM_BLOCK_BATCH_SIZE ""
44- ENV GRAPH_ETHEREUM_MAX_BLOCK_RANGE_SIZE ""
45- ENV GRAPH_ETHEREUM_MAX_EVENT_ONLY_RANGE ""
46- ENV GRAPH_ETHEREUM_JSON_RPC_TIMEOUT ""
47- ENV GRAPH_ETHEREUM_REQUEST_RETRIES ""
41+ # ENV ETHEREUM_TRACE_STREAM_STEP_SIZE ""
42+ # ENV DISABLE_BLOCK_INGESTOR ""
43+ # ENV ETHEREUM_BLOCK_BATCH_SIZE ""
44+ # ENV GRAPH_ETHEREUM_MAX_BLOCK_RANGE_SIZE ""
45+ # ENV GRAPH_ETHEREUM_MAX_EVENT_ONLY_RANGE ""
46+ # ENV GRAPH_ETHEREUM_JSON_RPC_TIMEOUT ""
47+ # ENV GRAPH_ETHEREUM_REQUEST_RETRIES ""
4848ENV GRAPH_ETHEREUM_BLOCK_INGESTOR_MAX_CONCURRENT_JSON_RPC_CALLS_FOR_TXN_RECEIPTS ""
4949ENV GRAPH_ETHEREUM_FETCH_TXN_RECEIPTS_IN_BATCHES ""
5050
Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ run_graph_node() {
6666 postgres_url=" postgresql://$postgres_user :$postgres_pass @$postgres_host :$postgres_port /$postgres_db ?sslmode=prefer"
6767
6868 wait_for_ipfs " $ipfs "
69+ echo " IPFS wait success"
6970 wait_for " $postgres_host :$postgres_port " -t 120
71+ echo " postgres wait success"
7072 sleep 5
7173
7274 graph-node \
You can’t perform that action at this time.
0 commit comments