From 13afbcb1c76582cfd118b9310ed38c2171c7ef01 Mon Sep 17 00:00:00 2001
From: "aleksei.voronin" <aleksei.voronin@demlabs.net>
Date: Tue, 12 May 2020 16:23:15 +0300
Subject: [PATCH] [*] fixed emission in POS

---
 modules/consensus/dag-pos/dap_chain_cs_dag_pos.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/consensus/dag-pos/dap_chain_cs_dag_pos.c b/modules/consensus/dag-pos/dap_chain_cs_dag_pos.c
index a37e7a5fab..2c72008d56 100644
--- a/modules/consensus/dag-pos/dap_chain_cs_dag_pos.c
+++ b/modules/consensus/dag-pos/dap_chain_cs_dag_pos.c
@@ -239,7 +239,6 @@ static int s_callback_event_verify(dap_chain_cs_dag_t * a_dag, dap_chain_cs_dag_
             dap_chain_addr_fill (&l_addr,l_key,&a_dag->chain->net_id );
             dap_enc_key_delete (l_key); // TODO cache all this operations to prevent useless memory copy ops
 
-            /*
             dap_chain_datum_t *l_datum = dap_chain_cs_dag_event_get_datum(a_dag_event);
             // transaction include emission?
             bool l_is_emit = false;
@@ -254,7 +253,7 @@ static int s_callback_event_verify(dap_chain_cs_dag_t * a_dag, dap_chain_cs_dag_
             }
             // if emission then the wallet can be with zero balance
             if(l_is_emit)
-                return 0;*/
+                return 0;
 
             bool l_is_enough_balance = false;
             for (size_t i =0; i <l_pos_pvt->tokens_hold_size; i++){
-- 
GitLab