Skip to content

Commit 0625621

Browse files
authored
Merge pull request #2757 from input-output-hk/djo/rust_1.91
fix: Rust `1.91` clippy warnings
2 parents ace8c04 + 0f7cae1 commit 0625621

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.7.91"
3+
version = "0.7.92"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-aggregator/src/services/certificate_chain_synchronizer/synchronizer_service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ mod tests {
527527
#[tokio::test]
528528
async fn return_chain_ordered_from_genesis_to_latest() {
529529
let base_certificate = fake_data::certificate("whatever");
530-
let chain = vec![
530+
let chain = [
531531
Certificate {
532532
epoch: Epoch(2),
533533
..fake_data::genesis_certificate("genesis")

0 commit comments

Comments
 (0)