From 2af835aa3c597c8bfaa81401537d7f4a055cb588 Mon Sep 17 00:00:00 2001
From: "alexey.stratulat" <alexey.stratulat@demlabs.net>
Date: Fri, 20 Dec 2019 21:20:06 +0700
Subject: [PATCH] [+] Added initialized dap_chain_global_db

---
 src/python-cellframe.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/python-cellframe.c b/src/python-cellframe.c
index 9e335660..a7c07759 100644
--- a/src/python-cellframe.c
+++ b/src/python-cellframe.c
@@ -77,8 +77,9 @@ static PyObject *python_cellframe_init(PyObject *self, PyObject *args){
     for (int i=0; i < size_list;i++){
         PyObject *value = PyList_GetItem(getModules, i);
         const char *c_value = PyUnicode_AsUTF8(value);
+        log_it(L_INFO, "Initializing the %s module ", c_value);
         if (strcmp(c_value, "Crypto") == 0){            //Init crypto
-            log_it(L_INFO, "Initializing the %s module", c_value);
+//            log_it(L_INFO, "Initializing the %s module", c_value);
             init_crypto = true;
             if (dap_crypto_init() != 0){
                 PyErr_SetString(CellFrame_error, "An error occurred while initializing the libdap-crypto-python module.");
@@ -244,6 +245,12 @@ static PyObject *python_cellframe_init(PyObject *self, PyObject *args){
 //            if (dap_enc_ks_init())
 //            if (dap_enc_ks_
         }
+        if (strcmp(c_value, "GlobalDB") == 0){
+            if (dap_chain_global_db_init(g_config) != 0){
+                PyErr_SetString(CellFrame_error, "Failed to initialize GlobalDB module. ");
+                return NULL;
+            }
+        }
 
 //        if (strcmp(c_value, "ENC") == 0){
 //            if (dap_enc_init())
-- 
GitLab