You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mithril-signer/src/mktree_store_sqlite.rs
+18-24Lines changed: 18 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,4 @@
1
-
use std::{
2
-
iter::repeat,
3
-
sync::{Arc,RwLock},
4
-
};
1
+
use std::{iter::repeat, sync::Arc};
5
2
6
3
use anyhow::Context;
7
4
use mithril_common::{
@@ -10,17 +7,17 @@ use mithril_common::{
10
7
};
11
8
12
9
/// A Merkle tree store with Sqlite backend
13
-
/// This store is used to store the Merkle tree nodes in a Sqlite database with in memory mode.
14
-
/// This store is not suited for proving, it is only used to store the compute the root of a Merkle tree.
15
-
/// This store is slower than the in memory store but uses less memory which is important to minimize the signer footprint on the SPO infrastructure.
10
+
/// * This store is used to store the Merkle tree nodes in a Sqlite database with in memory mode.
11
+
/// * This store is not suited for proving, it is only used to store the compute the root of a Merkle tree.
12
+
/// * This store is slower than the in memory store but uses less memory which is important to minimize the signer footprint on the SPO infrastructure.
0 commit comments