From b0c82299d0c886925bef7d61196de77b1a0cb1ac Mon Sep 17 00:00:00 2001 From: "alexey.stratulat" <alexey.stratulat@demlabs.net> Date: Wed, 8 Jan 2020 18:12:06 +0700 Subject: [PATCH] [+] Fix. Added description call function addProc in array DapMempoolMethods. --- include/wrapping_dap_mempool.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wrapping_dap_mempool.h b/include/wrapping_dap_mempool.h index 8487d6aa..8b637e34 100644 --- a/include/wrapping_dap_mempool.h +++ b/include/wrapping_dap_mempool.h @@ -13,6 +13,7 @@ typedef struct PyDapMempool{ PyObject *dap_chain_mempool_add_proc_py(PyObject *self, PyObject *args); static PyMethodDef DapMempoolMethods[] = { + {"addProc", dap_chain_mempool_add_proc_py, METH_VARARGS | METH_STATIC, ""}, {NULL,NULL,0,NULL} }; -- GitLab