remove external lib

This commit is contained in:
4tochka 2019-04-23 17:03:22 +04:00
parent 7979aa8c39
commit 472c9783f6

View File

@ -222,10 +222,11 @@ static PyObject *secp256k1_secp256k1_context_randomize(PyObject *self, PyObject
}
static PyObject *secp256k1_secp256k1_ec_pubkey_create(PyObject *self, PyObject *args) {
return Py_BuildValue("b", 0);
Py_buffer buffer;
int flag;
return Py_BuildValue("b", 0);
Py_buffer buffer;
if (!PyArg_ParseTuple(args,"y*i", &buffer, &flag)) {
return NULL;
}