refactor: change ommers type to Header (#292)

This commit is contained in:
Matthias Seitz
2022-11-30 00:13:52 +01:00
committed by GitHub
parent 7879389059
commit 267b857a8f

View File

@ -10,7 +10,7 @@ pub struct Block {
/// Transactions in this block.
pub body: Vec<TransactionSigned>,
/// Ommers/uncles header
pub ommers: Vec<SealedHeader>,
pub ommers: Vec<Header>,
}
impl Deref for Block {