Make pub IncrementalSnapshotHashes fields (#20727)

This commit is contained in:
Brooks Prumo 2021-10-18 13:38:43 -05:00 committed by GitHub
parent 84660bbf3d
commit 14af1957d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -209,10 +209,10 @@ impl SnapshotHashes {
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, AbiExample)]
pub struct IncrementalSnapshotHashes {
pub(crate) from: Pubkey,
pub(crate) base: (Slot, Hash),
pub(crate) hashes: Vec<(Slot, Hash)>,
pub(crate) wallclock: u64,
pub from: Pubkey,
pub base: (Slot, Hash),
pub hashes: Vec<(Slot, Hash)>,
pub wallclock: u64,
}
impl Sanitize for IncrementalSnapshotHashes {