Return the implementation number for a (valid) Minisketch object. */
| 283 | |
| 284 | /** Return the implementation number for a (valid) Minisketch object. */ |
| 285 | uint32_t GetImplementation() const noexcept { return minisketch_implementation(m_minisketch.get()); } |
| 286 | |
| 287 | /** Set the seed for a (valid) Minisketch object. See minisketch_set_seed(). */ |
| 288 | Minisketch& SetSeed(uint64_t seed) noexcept |
nothing calls this directly
no test coverage detected