Changed the use of boost:value_initialized for C++ list initializer

This commit is contained in:
Jesus Ramirez
2019-06-26 10:39:41 -04:00
committed by Lev Sizov
parent 98af2e954b
commit 2cd4fd8972
13 changed files with 35 additions and 35 deletions
+1 -1
View File
@@ -647,7 +647,7 @@ namespace cryptonote
)
{
//genesis block
bl = boost::value_initialized<block>();
bl = {};
blobdata tx_bl;
bool r = string_tools::parse_hexstr_to_binbuff(genesis_tx, tx_bl);