Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 00e687a

Browse files
committed
fix rebase errors
1 parent 4ee095d commit 00e687a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/blob_store.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! access read to a persistent file-based ledger.
44
55
use crate::entry::Entry;
6-
use crate::leader_scheduler::{DEFAULT_BOOTSTRAP_HEIGHT, TICKS_PER_BLOCK};
6+
use crate::leader_scheduler::DEFAULT_BOOTSTRAP_HEIGHT;
77
use crate::packet::{self, Blob};
88

99
use serde::Serialize;
@@ -29,6 +29,7 @@ type Result<T> = StdRes<T, StoreError>;
2929

3030
pub const DEFAULT_BLOCKS_PER_SLOT: u64 = 1;
3131
const ERASURE_COLUMN: &str = "erasure";
32+
const TICKS_PER_BLOCK: u64 = 32;
3233

3334
#[derive(Debug)]
3435
pub struct BlobStore {

0 commit comments

Comments
 (0)