Reduce max snapshot hashes to stay under MTU

This commit is contained in:
Michael Vines
2020-02-29 01:11:20 -07:00
parent b4362cc18b
commit 2a5605db24
2 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,4 @@
use crate::cluster_info::ClusterInfo;
use crate::cluster_info::{ClusterInfo, MAX_SNAPSHOT_HASHES};
use solana_ledger::{
snapshot_package::SnapshotPackageReceiver, snapshot_utils::archive_snapshot_package,
};
@ -16,8 +16,6 @@ pub struct SnapshotPackagerService {
t_snapshot_packager: JoinHandle<()>,
}
const MAX_SNAPSHOT_HASHES: usize = 24;
impl SnapshotPackagerService {
pub fn new(
snapshot_package_receiver: SnapshotPackageReceiver,