diff --git a/modules/chain/include/dap_chain.h b/modules/chain/include/dap_chain.h index 8634ef4e112769e2b6b1e2cfe9657c2c2b1bc907..2556d2e9b41b5aa857ad75b36f858a80a5f5e84a 100644 --- a/modules/chain/include/dap_chain.h +++ b/modules/chain/include/dap_chain.h @@ -100,6 +100,8 @@ typedef struct dap_chain{ uint16_t datum_types_count; dap_chain_type_t *datum_types; + uint16_t autoproc_datum_types_count; + uint16_t *autoproc_datum_types; // To hold it in double-linked lists struct dap_chain * next; diff --git a/modules/net/include/dap_chain_node.h b/modules/net/include/dap_chain_node.h index 1e5f0b6d7f4fe06e8c98923151ca79c10a256ea5..78931e2864782a8b0b015598f505bda2635dc3b0 100644 --- a/modules/net/include/dap_chain_node.h +++ b/modules/net/include/dap_chain_node.h @@ -141,6 +141,6 @@ inline static char* dap_chain_node_addr_to_hash_str(dap_chain_node_addr_t *addre return a_key; } -int dap_chain_node_mempool_process(dap_chain_t *a_chain); +int dap_chain_node_mempool_process(dap_chain_t *a_chain, dap_chain_node_role_t a_role); int dap_chain_node_mempool_init(); void dap_chain_node_mempool_deinit();