From 51fb2361ecdd7d535ec85cd6bf5dd63551f632cb Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Sat, 24 Mar 2018 22:00:21 +0100 Subject: [PATCH] Fixed spaces --- src/cryptonote_core/cryptonote_format_utils.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp index 70819df..2223edf 100644 --- a/src/cryptonote_core/cryptonote_format_utils.cpp +++ b/src/cryptonote_core/cryptonote_format_utils.cpp @@ -650,15 +650,15 @@ namespace cryptonote if (!get_block_hashing_blob(b, blob)) return false; - if (BLOCK_MAJOR_VERSION_2 <= b.major_version) - { - blobdata parent_blob; - auto sbb = make_serializable_bytecoin_block(b, true, false); - if (!t_serializable_object_to_blob(sbb, parent_blob)) - return false; + if (BLOCK_MAJOR_VERSION_2 <= b.major_version) + { + blobdata parent_blob; + auto sbb = make_serializable_bytecoin_block(b, true, false); + if (!t_serializable_object_to_blob(sbb, parent_blob)) + return false; - blob.append(parent_blob); - } + blob.append(parent_blob); + } return get_object_hash(blob, res); }