Fix compilation errors

This commit is contained in:
adria0
2020-07-29 08:42:17 +02:00
committed by Artem Vorotnikov
parent 26e253e554
commit 544725a018
4 changed files with 24 additions and 10 deletions

View File

@@ -303,7 +303,7 @@ impl<'x> OpenBlock<'x> {
warn!(
"Heavy ({} ms) transaction in block {:?}: {:?}",
took_ms,
self.block.header().number(),
self.block.header.number(),
hash
);
}

View File

@@ -113,6 +113,8 @@ extern crate env_logger;
extern crate ethcore_accounts as accounts;
#[cfg(feature = "stratum")]
extern crate ethcore_stratum;
#[cfg(any(test, feature = "test-helpers"))]
extern crate kvdb_memorydb;
#[cfg(any(test, feature = "kvdb-rocksdb"))]
extern crate kvdb_rocksdb;
#[cfg(test)]