mirror of
https://github.com/monero-project/monero.git
synced 2024-10-30 04:57:36 +00:00
Merge pull request #8543
d21fd92
rpc: dont shrink slice when loading from binary (Jeffrey Ryan)
This commit is contained in:
commit
a43a5caefe
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ namespace serialization
|
|||
byte_stream ss;
|
||||
ss.reserve(initial_buffer_size);
|
||||
store_to_binary(ss);
|
||||
target = epee::byte_slice{std::move(ss)};
|
||||
target = epee::byte_slice{std::move(ss), false};
|
||||
return true;
|
||||
CATCH_ENTRY("portable_storage::store_to_binary", false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue