ledger-tool/: Include full validator voting history in fork-graph (#6756)
This commit is contained in:
@ -1139,9 +1139,12 @@ impl Blocktree {
|
||||
serialized_shred
|
||||
.expect("Shred must exist if shred index was included in a range"),
|
||||
)
|
||||
.map_err(|_| {
|
||||
.map_err(|err| {
|
||||
BlocktreeError::InvalidShredData(Box::new(bincode::ErrorKind::Custom(
|
||||
"Could not reconstruct shred from shred payload".to_string(),
|
||||
format!(
|
||||
"Could not reconstruct shred from shred payload: {:?}",
|
||||
err
|
||||
),
|
||||
)))
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user