aboutsummaryrefslogtreecommitdiff
path: root/src/version_table.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/version_table.rs')
-rw-r--r--src/version_table.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/version_table.rs b/src/version_table.rs
index 7e7623fc..24109981 100644
--- a/src/version_table.rs
+++ b/src/version_table.rs
@@ -5,6 +5,7 @@ use std::sync::Arc;
use crate::background::BackgroundRunner;
use crate::data::*;
use crate::table::*;
+use crate::table_sharded::*;
use crate::block_ref_table::*;
@@ -56,7 +57,7 @@ impl Entry<Hash, EmptySortKey> for Version {
pub struct VersionTable {
pub background: Arc<BackgroundRunner>,
- pub block_ref_table: Arc<Table<BlockRefTable>>,
+ pub block_ref_table: Arc<Table<BlockRefTable, TableShardedReplication>>,
}
#[async_trait]