Skip to content
Snippets Groups Projects
Commit 4a1fb80b authored by roman.padenkov's avatar roman.padenkov Committed by Roman Khlopkov
Browse files

Hotfix 12081+

parent 363ea3fd
1 merge request!390Hotfix 12081+
Subproject commit 7c4584d745d12fff332d711e1afe80908878b2fc
Subproject commit 3fff1a6cf4098033564c8199fa8810f8e411d2bd
Subproject commit a4f8d7a44e389cf7c775f613d573652a06a9d750
Subproject commit f062affeb62511688bae8e41d827916250bd535a
Subproject commit e34e6a70044c3719d0ae2138820f7ca03b1ee915
Subproject commit 0e580c4a2dc2c154ba5592c64995046143b86df7
......@@ -90,7 +90,7 @@ PyObject *dap_chain_wallet_open_file_py(PyObject *self, PyObject *argv){
if (!PyArg_ParseTuple(argv, "s|s", &file_path, &pass))
return NULL;
PyDapChainWalletObject *obj_wallet = PyObject_New(PyDapChainWalletObject, &DapChainWalletObjectType);
obj_wallet->wallet = dap_chain_wallet_open_file(file_path, pass);
obj_wallet->wallet = dap_chain_wallet_open_file(file_path, pass, NULL);
return (PyObject*)obj_wallet;
}
PyObject *dap_chain_wallet_open_py(PyObject *self, PyObject *argv){
......@@ -100,7 +100,7 @@ PyObject *dap_chain_wallet_open_py(PyObject *self, PyObject *argv){
if (!PyArg_ParseTuple(argv, "ss", &wallet_name, &wallet_path))
return NULL;
PyDapChainWalletObject *obj_wallet = PyObject_New(PyDapChainWalletObject, &DapChainWalletObjectType);
obj_wallet->wallet = dap_chain_wallet_open(wallet_name, wallet_path);
obj_wallet->wallet = dap_chain_wallet_open(wallet_name, wallet_path,NULL);
return (PyObject*)obj_wallet;
}
PyObject *dap_chain_wallet_save_py(PyObject *self, PyObject *argv){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment