Type Definition bitcoin_compressor::CompressedScript
source · pub type CompressedScript = PreVector<u8, 33>;
Expand description
| This saves us from making many heap allocations | when serializing and deserializing | compressed scripts. | | This prevector size is determined by | the largest .resize() in the | | CompressScript function. The largest | compressed script format is a compressed | public key, which is 33 bytes. |