From 61fe1418ef48d7876450e98e4d4fb58e4554c828 Mon Sep 17 00:00:00 2001 From: antiochp <30642645+antiochp@users.noreply.github.com> Date: Wed, 23 Jan 2019 10:49:47 +0000 Subject: [PATCH] rustfmt --- servers/src/mining/mine_block.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/servers/src/mining/mine_block.rs b/servers/src/mining/mine_block.rs index 0e8e7632..aee1f204 100644 --- a/servers/src/mining/mine_block.rs +++ b/servers/src/mining/mine_block.rs @@ -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![] }