*
* Returns: a newly created scratch space.
* Args: ctx: an existing context object (cannot be NULL)
- * In: init_size: initial amount of memory to allocate
- * max_size: maximum amount of memory to allocate
+ * In: max_size: maximum amount of memory to allocate
*/
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT secp256k1_scratch_space* secp256k1_scratch_space_create(
const secp256k1_context* ctx,
- size_t init_size,
size_t max_size
) SECP256K1_ARG_NONNULL(1);