Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ab85ff1

Browse files
committed
feat: i don't remember what's here
1 parent 12e3ae4 commit ab85ff1

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

chain/ethereum/src/ethereum_adapter.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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,

docker/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ RUN cd /graph-node \
3434
FROM debian:buster-slim as graph-node
3535
ENV RUST_LOG ""
3636
ENV GRAPH_LOG ""
37-
ENV EARLY_LOG_CHUNK_SIZE ""
37+
#ENV EARLY_LOG_CHUNK_SIZE ""
3838
ENV ETHEREUM_RPC_PARALLEL_REQUESTS ""
39-
ENV ETHEREUM_BLOCK_CHUNK_SIZE ""
39+
#ENV ETHEREUM_BLOCK_CHUNK_SIZE ""
4040
ENV 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 ""
4848
ENV GRAPH_ETHEREUM_BLOCK_INGESTOR_MAX_CONCURRENT_JSON_RPC_CALLS_FOR_TXN_RECEIPTS ""
4949
ENV GRAPH_ETHEREUM_FETCH_TXN_RECEIPTS_IN_BATCHES ""
5050

docker/start

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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 \

0 commit comments

Comments
 (0)