Get the serialized size in bytes for this (valid) Minisketch object.. */
| 319 | |
| 320 | /** Get the serialized size in bytes for this (valid) Minisketch object.. */ |
| 321 | size_t GetSerializedSize() const noexcept { return minisketch_serialized_size(m_minisketch.get()); } |
| 322 | |
| 323 | /** Serialize this (valid) Minisketch object as a byte vector. */ |
| 324 | std::vector<unsigned char> Serialize() const |