Skip to content

Commit b8721cd

Browse files
committed
Cleanup some outdated TODOs
1 parent e71511b commit b8721cd

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

fvm/src/blockstore/buffered.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,11 @@ use fvm_shared::blockstore::{Blockstore, Buffered};
99
// TODO: figure out where to put this.
1010
const DAG_CBOR: u64 = 0x71;
1111

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-
1712
// TODO: replace HashMap with DashMap like in forest?
1813
use std::cell::RefCell;
1914
use std::collections::HashMap;
2015
use std::io::{Cursor, Read, Seek};
2116

22-
// TODO: This is going to live in the kernel so it should be a Blockstore, not an ActorStore.
23-
2417
/// Wrapper around `Blockstore` to limit and have control over when values are written.
2518
/// This type is not threadsafe and can only be used in synchronous contexts.
2619
#[derive(Debug)]

fvm/src/call_manager/backtrace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use crate::kernel::SyscallError;
1010
/// A call backtrace records _why_ an actor exited with a specific error code.
1111
#[derive(Debug, Default, Clone)]
1212
pub struct Backtrace {
13-
/// The actors through which this error was propegated from bottom (source) to top.
13+
/// The actors through which this error was propagated from bottom (source) to top.
1414
pub frames: Vec<Frame>,
1515
/// The last syscall error before the first actor in `frames` aborted.
1616
pub cause: Option<Cause>,

0 commit comments

Comments
 (0)