mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
comment out store_t_to_binary
This commit is contained in:
parent
1644a31c88
commit
8129bc88c1
1 changed files with 4 additions and 4 deletions
|
@ -1448,12 +1448,12 @@ show_block_hex(size_t block_height, bool complete_blk)
|
||||||
|
|
||||||
std::string complete_block_data_str;
|
std::string complete_block_data_str;
|
||||||
|
|
||||||
if(!epee::serialization::store_t_to_binary(
|
/*if(!epee::serialization::store_t_to_binary(
|
||||||
complete_block_data, complete_block_data_str))
|
complete_block_data, complete_block_data_str))
|
||||||
{
|
{
|
||||||
cerr << "Failed to serialize complete_block_data\n";
|
cerr << "Failed to serialize complete_block_data\n";
|
||||||
return string {"Failed to obtain complete block data"};
|
return string {"Failed to obtain complete block data"};
|
||||||
}
|
}*/
|
||||||
|
|
||||||
return epee::string_tools
|
return epee::string_tools
|
||||||
::buff_to_hex_nodelimer(complete_block_data_str);
|
::buff_to_hex_nodelimer(complete_block_data_str);
|
||||||
|
@ -1745,12 +1745,12 @@ show_ringmemberstx_jsonhex(string const& tx_hash_str)
|
||||||
|
|
||||||
std::string complete_block_data_str;
|
std::string complete_block_data_str;
|
||||||
|
|
||||||
if(!epee::serialization::store_t_to_binary(
|
/*if(!epee::serialization::store_t_to_binary(
|
||||||
complete_block_data, complete_block_data_str))
|
complete_block_data, complete_block_data_str))
|
||||||
{
|
{
|
||||||
cerr << "Failed to serialize complete_block_data\n";
|
cerr << "Failed to serialize complete_block_data\n";
|
||||||
return json {"error", "Failed to obtain complete block data"};
|
return json {"error", "Failed to obtain complete block data"};
|
||||||
}
|
}*/
|
||||||
|
|
||||||
tx_details txd = get_tx_details(tx);
|
tx_details txd = get_tx_details(tx);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue