[Trivial] Add a comment on the use of prevector in script.

This commit is contained in:
Gregory Maxwell 2017-08-08 22:51:40 +00:00
parent 2507fd5556
commit 08f71c29ea
1 changed files with 6 additions and 0 deletions

View File

@ -377,6 +377,12 @@ private:
int64_t m_value;
};
/**
* We use a prevector for the script to reduce the considerable memory overhead
* of vectors in cases where they normally contain a small number of small elements.
* Tests in October 2015 showed use of this reduced dbcache memory usage by 23%
* and made an initial sync 13% faster.
*/
typedef prevector<28, unsigned char> CScriptBase;
/** Serialized script, used inside transaction inputs and outputs */