diff --git a/ethcore/src/state/mod.rs b/ethcore/src/state/mod.rs index ce711ffbd..7aff83c14 100644 --- a/ethcore/src/state/mod.rs +++ b/ethcore/src/state/mod.rs @@ -195,7 +195,7 @@ impl AccountEntry { /// checkpoint can be discateded with `discard_checkpoint`. All of the orignal /// backed-up values are moved into a parent checkpoint (if any). /// -pub struct State { +pub struct State { db: B, root: H256, cache: RefCell>, @@ -851,7 +851,7 @@ impl State { } } -impl fmt::Debug for State { +impl fmt::Debug for State { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{:?}", self.cache.borrow()) }