From fe6f27c3a20b268ee4fa2316d3955ffa0d13c069 Mon Sep 17 00:00:00 2001 From: SergiySW Date: Tue, 30 Jan 2018 04:19:31 +0300 Subject: [PATCH] Fixing log message about bootstrap fork --- rai/node/bootstrap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/node/bootstrap.cpp b/rai/node/bootstrap.cpp index a154e1dc..25060201 100644 --- a/rai/node/bootstrap.cpp +++ b/rai/node/bootstrap.cpp @@ -956,7 +956,7 @@ void rai::bootstrap_attempt::process_fork (MDB_txn * transaction_a, std::shared_ { node->network.broadcast_confirm_req (ledger_block); node->network.broadcast_confirm_req (block_a); - BOOST_LOG (node->log) << boost::str (boost::format ("While bootstrappping, fork between our block: %2% and block %1% both with root %3%") % ledger_block->hash ().to_string () % block_a->hash ().to_string () % block_a->root ().to_string ()); + BOOST_LOG (node->log) << boost::str (boost::format ("While bootstrappping, fork between our block %1% and block %2% both with root %3%") % ledger_block->hash ().to_string () % block_a->hash ().to_string () % block_a->root ().to_string ()); } }