Skip to content

Commit ce08cf4

Browse files
committed
Add missing committee.toml.
1 parent ab868db commit ce08cf4

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,11 @@ test-all: build_release build-test-utils
177177
--spawn "1:anvil --port 8545" \
178178
--run "2:sleep 3" \
179179
--run "3:scripts/deploy-test-contract" \
180-
--spawn "4:target/release/block-maker --port 55000 --committee test-configs/c0/committee.toml" \
181-
--spawn "4:target/release/yapper --keyset-file test-configs/c0/committee.toml" \
180+
--spawn "4:target/release/block-maker --port 55000 --committee test-configs/local/committee.toml" \
181+
--spawn "4:target/release/yapper --keyset-file test-configs/local/committee.toml" \
182182
--spawn "5:target/release/run-committee --configs test-configs/local/ --committee 0 --timeboost target/release/timeboost" \
183183
target/release/block-checker -- \
184184
--config test-configs/local/node_0.toml \
185-
--committee test-configs/c0/committee.toml \
185+
--committee test-configs/local/committee.toml \
186186
--committee-id 0 \
187187
--blocks 1000

test-configs/local/committee.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
effective_timestamp = "2025-09-01T02:00:00Z"
2+
3+
[[members]]
4+
signing_key = "eiwaGN1NNaQdbnR9FsjKzUeLghQZsTLPjiL4RcQgfLoX"
5+
dh_key = "AZrLbV37HAGhBWh49JHzup6Wfpu2AAGWGJJnxCDJibiY"
6+
dkg_enc_key = "7PdmfTS45d2hTXB8NcrTmvDwUVBimpYBbrBaGnu3i5Ne65krVfUpbe7bYRHS3AEg7H"
7+
public_address = "127.0.0.1:8000"
8+
http_api = "127.0.0.1:8004"
9+
internal_api = "127.0.0.1:8003"
10+
11+
[[members]]
12+
signing_key = "vGKKAxVNfkSCdn8qh36nXdSZqyhPq644sQBoeZtcEUCR"
13+
dh_key = "FHTJAk6oyt3jefEp1ZrPEn2MkqRt2LibEFd57AnEUZdb"
14+
dkg_enc_key = "7p1BtEz7WnFMt6Hr28X3Rngqza6i8hRoswhzZRFd6GzgkspLKHBfDocHP8DwzXiNiZ"
15+
public_address = "127.0.0.1:8010"
16+
http_api = "127.0.0.1:8014"
17+
internal_api = "127.0.0.1:8013"
18+
19+
[[members]]
20+
signing_key = "264jMLf85hfufg4ck97Hw2jiL6i1PHNoGUqxUqfhtssaE"
21+
dh_key = "63eYNKoW2PsWZFhHHj3eZwHTdPE7gEjEDM7gGeDf9Uaj"
22+
dkg_enc_key = "62bnAAbU58zZUcGqy9JKGZRZHkm3g7JZB2DtJGQyChXQBPGvXSS6fF21yoxiVuD1eb"
23+
public_address = "127.0.0.1:8020"
24+
http_api = "127.0.0.1:8024"
25+
internal_api = "127.0.0.1:8023"
26+
27+
[[members]]
28+
signing_key = "v6UBdLT5BvMhLW7iKv7M2xYeaW2SCAsnZ5PiSg6AaKfA"
29+
dh_key = "Do2GmAexW5MUdD8nToDiBWGbDgk1AwXoxtLTyirDtKQh"
30+
dkg_enc_key = "7aZBFZUEbXxFH9SiGJeUyjzas4mYJ1R13mTPsPeawVU7JFuocfvX9XsRT8qgr17RCe"
31+
public_address = "127.0.0.1:8030"
32+
http_api = "127.0.0.1:8034"
33+
internal_api = "127.0.0.1:8033"
34+
35+
[[members]]
36+
signing_key = "tV66KknkDH47hRSNzwJtt7Q7EZtxVxQsNnUGoAJdDn6J"
37+
dh_key = "HXaesvEGFiDgrVTix1fKzSLTarFexTZSJD6ymSrF7vPL"
38+
dkg_enc_key = "6R69TzDg3jo1MTex9Uter9XQud458YPpSvXirkYdS295PV81CRvgz5jVWQbkCpZnYV"
39+
public_address = "127.0.0.1:8040"
40+
http_api = "127.0.0.1:8044"
41+
internal_api = "127.0.0.1:8043"

test-utils/src/binaries/run-committee.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ async fn main() -> Result<()> {
4343
if Some(OsStr::new("toml")) != entry.path().extension() {
4444
continue;
4545
}
46+
if Some(OsStr::new("committee.toml")) == entry.path().file_name() {
47+
continue;
48+
}
4649
let mut cmd = Command::new(args.timeboost.as_os_str());
4750
cmd.arg("--committee-id")
4851
.arg(args.committee.to_string())

0 commit comments

Comments
 (0)