Skip to content

Commit f4e6043

Browse files
committed
fix(ci): Fixed dependency issue after rebase
1 parent 8b21af7 commit f4e6043

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ jobs:
402402
extra_args:
403403
[
404404
"--aggregate-signature-type=Concatenation",
405-
"--aggregate-signature-type=Snark --cardano-epoch-length=30 --cardano-slot-length=1.0 --mithril-run-interval 500",
405+
"--aggregate-signature-type=Snark --cardano-epoch-length=20 --cardano-slot-length=1.0 --mithril-run-interval 500",
406406
]
407407
steps:
408408
- name: Checkout sources

mithril-aggregator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ license = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[features]
13-
default = ["future_snark", "rustls-tls"]
13+
default = ["future_snark", "rustls"]
1414
bundle_tls = ["reqwest/native-tls-vendored"]
15-
rustls-tls = ["reqwest/rustls-tls"]
15+
rustls = ["reqwest/rustls"]
1616

1717
future_snark = ["mithril-common/future_snark"]
1818

mithril-relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[features]
13-
default = ["future_snark", "rustls-tls"]
13+
default = ["future_snark", "rustls"]
1414
# For activating snark features
1515
future_snark = ["mithril-common/future_snark"]
1616
rustls = ["reqwest/rustls"]

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository = { workspace = true }
1414
ignored = ["reqwest"]
1515

1616
[features]
17-
default = ["future_snark", "rustls-tls"]
17+
default = ["future_snark", "rustls"]
1818
bundle_tls = ["reqwest/native-tls-vendored"]
1919
future_snark = ["mithril-common/future_snark"]
2020
rustls = ["reqwest/rustls"]

mithril-test-lab/mithril-end-to-end/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test = false
1515
bench = false
1616

1717
[features]
18-
default = ["future_snark", "rustls-tls"]
18+
default = ["future_snark", "rustls"]
1919
allow_skip_signer_certification = []
2020
future_snark = ["mithril-common/future_snark"]
2121
rustls = ["reqwest/rustls"]

mithril-test-lab/mithril-end-to-end/src/assertions/exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pub async fn update_protocol_parameters(aggregator: &Aggregator) -> StdResult<()
7979
info!("> stopping aggregator");
8080
aggregator.stop().await?;
8181
let protocol_parameters_new = ProtocolParameters {
82-
k: 7,
82+
k: 5,
8383
m: 9,
8484
phi_f: 0.94,
8585
};

mithril-test-lab/mithril-end-to-end/src/mithril/infrastructure.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ impl MithrilInfrastructure {
273273

274274
aggregator
275275
.set_protocol_parameters(&ProtocolParameters {
276-
k: 5,
276+
k: 2,
277277
m: 9,
278278
phi_f: 0.95,
279279
})

0 commit comments

Comments
 (0)