Files
pezkuwi-subxt/bridges/primitives/header-chain/tests/tests.rs
T
Serban Iorga 5f73a456c5 GRANDPA justifications: equivocation detection primitives (#2295) (#2297)
* GRANDPA justifications: equivocation detection primitives

- made the justification verification logic more customizable
- added support for parsing multiple justifications and extracting
  equivocations
- split the logic into multiple files
- split the errors into multiple enums
2024-04-10 10:28:37 +02:00

8 lines
97 B
Rust

mod justification {
mod equivocation;
mod optimizer;
mod strict;
}
mod implementation_match;