ringct: reserve space in vectors to avoid excessive reallocation

This commit is contained in:
moneromooo-monero 2016-10-10 23:47:01 +01:00
parent 9ebf7b6dcf
commit afc70df7ea
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 0 deletions

View File

@ -351,6 +351,7 @@ namespace rct {
key get_pre_mlsag_hash(const rctSig &rv)
{
keyV hashes;
hashes.reserve(3);
hashes.push_back(rv.message);
crypto::hash h;
@ -364,6 +365,7 @@ namespace rct {
hashes.push_back(hash2rct(h));
keyV kv;
kv.reserve((64*3+1) * rv.p.rangeSigs.size());
for (auto r: rv.p.rangeSigs)
{
for (size_t n = 0; n < 64; ++n)