miner: add missing macro use for trace_time

This commit is contained in:
André Silva 2018-07-07 18:30:50 +01:00
parent 662e76629c
commit 4bc11167c8

View File

@ -30,12 +30,13 @@ extern crate linked_hash_map;
extern crate parking_lot;
extern crate price_info;
extern crate rlp;
extern crate trace_time;
extern crate transaction_pool as txpool;
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate trace_time;
#[macro_use]
extern crate log;
#[cfg(test)]