mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-01 01:01:01 +00:00
extract some grandpa types to Primitives crate (#12208)
* extract some grandpa types to primitives * fmt * fmt
This commit is contained in:
@@ -380,8 +380,13 @@ mod tests {
|
||||
precommits: Vec::new(),
|
||||
};
|
||||
|
||||
let grandpa_just =
|
||||
GrandpaJustification::<Block> { round: 8, votes_ancestries: Vec::new(), commit };
|
||||
let grandpa_just: GrandpaJustification<Block> =
|
||||
sp_finality_grandpa::GrandpaJustification::<Header> {
|
||||
round: 8,
|
||||
votes_ancestries: Vec::new(),
|
||||
commit,
|
||||
}
|
||||
.into();
|
||||
|
||||
let finality_proof = FinalityProof {
|
||||
block: header(2).hash(),
|
||||
|
||||
Reference in New Issue
Block a user