Skip to content

Commit 527b5c3

Browse files
committed
fix: paths in proof aggregator config
1 parent bac2fef commit 527b5c3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config-files/config-proof-aggregator-docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ proof_aggregation_service_address: "0xFD471836031dc5108809D173A067e8486B9047A3"
33
eth_rpc_url: "http://anvil:8545"
44
eth_ws_url: "ws://anvil:8545"
55
max_proofs_in_queue: 1000
6-
last_aggregated_block_filepath: config-files/proof-aggregator.last_aggregated_block.json
6+
last_aggregated_block_filepath: /aligned_layer/config-files/proof-aggregator.last_aggregated_block.json
77
proofs_per_chunk: 512 # Amount of proofs to process per chunk
88
# This number comes from the blob data limit
99
# Since each blob has a capacity of (4096 * 32) = 131.072 bytes
@@ -15,5 +15,5 @@ total_proofs_limit: 3968
1515

1616

1717
ecdsa:
18-
private_key_store_path: "config-files/anvil.proof-aggregator.ecdsa.key.json"
18+
private_key_store_path: "/aligned_layer/config-files/anvil.proof-aggregator.ecdsa.key.json"
1919
private_key_store_password: ""

docker/proof-aggregator.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ FROM debian:bookworm-slim AS final
2222

2323
COPY --from=base /aligned_layer/aggregation_mode/target/release/proof_aggregator_cpu /aligned_layer/proof_aggregator_cpu
2424
COPY config-files/config-proof-aggregator-docker.yaml /aligned_layer/config-files/
25+
COPY config-files/proof-aggregator.last_aggregated_block.json /aligned_layer/config-files/
2526
COPY config-files/anvil.proof-aggregator.ecdsa.key.json /aligned_layer/config-files/
2627

2728
RUN apt update -y && apt install -y libssl-dev ca-certificates

0 commit comments

Comments
 (0)