mirror of
https://github.com/monero-project/monero.git
synced 2024-12-25 18:19:23 -05:00
rpc: dont shrink slice when loading from binary
This commit is contained in:
parent
5256fdd7a1
commit
d21fd9242c
@ -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 New Issue
Block a user