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: fvm/src/blockstore/buffered.rs
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,18 +9,11 @@ use fvm_shared::blockstore::{Blockstore, Buffered};
9
9
// TODO: figure out where to put this.
10
10
constDAG_CBOR:u64 = 0x71;
11
11
12
-
// NOTE: This code doesn't currently work. It was taken from the ipld/blockstore crate but now lives here because that "blockstore" is really the actor store.
13
-
// TODO:
14
-
// 1. Finish converting it to a true blockstore.
15
-
// 2. Add bulk put methods to the blockstore.
16
-
17
12
// TODO: replace HashMap with DashMap like in forest?
18
13
use std::cell::RefCell;
19
14
use std::collections::HashMap;
20
15
use std::io::{Cursor,Read,Seek};
21
16
22
-
// TODO: This is going to live in the kernel so it should be a Blockstore, not an ActorStore.
23
-
24
17
/// Wrapper around `Blockstore` to limit and have control over when values are written.
25
18
/// This type is not threadsafe and can only be used in synchronous contexts.
0 commit comments