This commit is contained in:
antiochp
2019-01-23 10:49:47 +00:00
parent ba25592f15
commit 61fe1418ef
+4 -1
View File
@@ -114,7 +114,10 @@ fn build_block(
let txs = match tx_pool.read().prepare_mineable_transactions() {
Ok(txs) => txs,
Err(e) => {
error!("build_block: Failed to prepare mineable txs from txpool: {:?}", e);
error!(
"build_block: Failed to prepare mineable txs from txpool: {:?}",
e
);
warn!("build_block: Falling back to mining empty block.");
vec![]
}