mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
addopt byte_slice
This commit is contained in:
parent
729af780cf
commit
29824f1e3e
1 changed files with 14 additions and 5 deletions
19
src/page.h
19
src/page.h
|
@ -1446,17 +1446,22 @@ show_block_hex(size_t block_height, bool complete_blk)
|
||||||
return string {"Failed to obtain complete block data "};
|
return string {"Failed to obtain complete block data "};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string complete_block_data_str;
|
//std::string complete_block_data_str;
|
||||||
|
epee::byte_slice complete_block_data_slice;
|
||||||
|
|
||||||
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_slice))
|
||||||
{
|
{
|
||||||
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"};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string block_data_str(
|
||||||
|
complete_block_data_slice.begin(),
|
||||||
|
complete_block_data_slice.end());
|
||||||
|
|
||||||
return epee::string_tools
|
return epee::string_tools
|
||||||
::buff_to_hex_nodelimer(complete_block_data_str);
|
::buff_to_hex_nodelimer(block_data_str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (std::exception const& e)
|
catch (std::exception const& e)
|
||||||
|
@ -1743,10 +1748,10 @@ show_ringmemberstx_jsonhex(string const& tx_hash_str)
|
||||||
return json {"error", "Failed to obtain complete block data "};
|
return json {"error", "Failed to obtain complete block data "};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string complete_block_data_str;
|
epee::byte_slice complete_block_data_slice;
|
||||||
|
|
||||||
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_slice))
|
||||||
{
|
{
|
||||||
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"};
|
||||||
|
@ -1758,6 +1763,10 @@ show_ringmemberstx_jsonhex(string const& tx_hash_str)
|
||||||
tx_json["payment_id8"] = pod_to_hex(txd.payment_id8);
|
tx_json["payment_id8"] = pod_to_hex(txd.payment_id8);
|
||||||
tx_json["payment_id8e"] = pod_to_hex(txd.payment_id8);
|
tx_json["payment_id8e"] = pod_to_hex(txd.payment_id8);
|
||||||
|
|
||||||
|
std::string complete_block_data_str(
|
||||||
|
complete_block_data_slice.begin(),
|
||||||
|
complete_block_data_slice.end());
|
||||||
|
|
||||||
tx_json["block"] = epee::string_tools
|
tx_json["block"] = epee::string_tools
|
||||||
::buff_to_hex_nodelimer(complete_block_data_str);
|
::buff_to_hex_nodelimer(complete_block_data_str);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue