Fixed comments after review and test after rebase

This commit is contained in:
Anton Gavrilov
2017-07-31 18:10:06 +02:00
parent 8826fdb03a
commit 141c2fd34a
7 changed files with 8 additions and 14 deletions

View File

@@ -206,7 +206,7 @@ pub trait IsBlock {
fn uncles(&self) -> &[Header] { &self.block().uncles }
/// Get tracing enabled flag for this block.
fn tracing_enabled(&self) -> &bool { &self.block().tracing_enabled }
fn tracing_enabled(&self) -> bool { self.block().tracing_enabled }
}
/// Trait for a object that has a state database.