remove external lib

This commit is contained in:
4tochka 2019-04-23 17:10:57 +04:00
parent 16abe53da1
commit 6ecde9c600

View File

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