mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #4264
0c8d8f6
unit_tests: remove std::move in return statement (moneromooo-monero)
This commit is contained in:
commit
ad5aabc85a
@ -824,7 +824,7 @@ TEST(Serialization, portability_outputs)
|
||||
return {};
|
||||
}
|
||||
crypto::chacha8(ciphertext.data() + sizeof(iv), ciphertext.size() - prefix_size, key, iv, &plaintext[0]);
|
||||
return std::move(plaintext);
|
||||
return plaintext;
|
||||
};
|
||||
crypto::secret_key view_secret_key;
|
||||
epee::string_tools::hex_to_pod("339673bb1187e2f73ba7841ab6841c5553f96e9f13f8fe6612e69318db4e9d0a", view_secret_key);
|
||||
|
Loading…
Reference in New Issue
Block a user