diff --git a/modules/net/srv/include/dap_chain_net_srv_order.h b/modules/net/srv/include/dap_chain_net_srv_order.h index a28c228f66d278ff58b86716253705c7a86e8d08..cf21280c85a21676e2c15dcd3e30f8d9da0397a9 100644 --- a/modules/net/srv/include/dap_chain_net_srv_order.h +++ b/modules/net/srv/include/dap_chain_net_srv_order.h @@ -96,9 +96,16 @@ DAP_STATIC_INLINE dap_chain_net_srv_order_t * dap_chain_net_srv_order_find_by_ha return NULL; } -int dap_chain_net_srv_order_find_all_by(dap_chain_net_t * a_net, const dap_chain_net_srv_order_direction_t a_direction, const dap_chain_net_srv_uid_t a_srv_uid, - const dap_chain_net_srv_price_unit_uid_t a_price_unit, const char a_price_ticker[DAP_CHAIN_TICKER_SIZE_MAX], const uint256_t a_price_min, const uint256_t a_price_max, - dap_chain_net_srv_order_t ** a_output_orders, size_t * a_output_orders_count); +int dap_chain_net_srv_order_find_all_by( + dap_chain_net_t* a_net, + const dap_chain_net_srv_order_direction_t a_direction, + const dap_chain_net_srv_uid_t a_srv_uid, + const dap_chain_net_srv_price_unit_uid_t a_price_unit, + const char a_price_ticker[DAP_CHAIN_TICKER_SIZE_MAX], + const uint256_t a_price_min, const uint256_t a_price_max, + dap_chain_net_srv_order_t** a_output_orders, + size_t* a_output_orders_count); + int dap_chain_net_srv_order_delete_by_hash_str_sync( dap_chain_net_t * a_net,const char * a_hash_str ); /** @@ -119,7 +126,7 @@ char *dap_chain_net_srv_order_create(dap_chain_net_t * a_net, dap_chain_net_srv_uid_t a_srv_uid, // Service UID dap_chain_node_addr_t a_node_addr, // Node address that servs the order (if present) dap_chain_hash_fast_t a_tx_cond_hash, // Hash index of conditioned transaction attached with order - uint256_t a_price, // service price in datoshi, for SERV_CLASS_ONCE ONCE for the whole service, for SERV_CLASS_PERMANENT for one unit. + uint256_t *a_price, // service price in datoshi, for SERV_CLASS_ONCE ONCE for the whole service, for SERV_CLASS_PERMANENT for one unit. dap_chain_net_srv_price_unit_uid_t a_price_unit, // Unit of service (seconds, megabytes, etc.) Only for SERV_CLASS_PERMANENT const char a_price_ticker[], dap_time_t a_expires, // TS when the service expires @@ -136,7 +143,7 @@ dap_chain_net_srv_order_t *dap_chain_net_srv_order_compose( dap_chain_net_srv_uid_t a_srv_uid, // Service UID dap_chain_node_addr_t a_node_addr, // Node address that servs the order (if present) dap_chain_hash_fast_t a_tx_cond_hash, // Hash index of conditioned transaction attached with order - uint256_t a_price, // service price in datoshi, for SERV_CLASS_ONCE ONCE for the whole service, for SERV_CLASS_PERMANENT for one unit. + uint256_t *a_price, // service price in datoshi, for SERV_CLASS_ONCE ONCE for the whole service, for SERV_CLASS_PERMANENT for one unit. dap_chain_net_srv_price_unit_uid_t a_price_unit, // Unit of service (seconds, megabytes, etc.) Only for SERV_CLASS_PERMANENT const char a_price_ticker[DAP_CHAIN_TICKER_SIZE_MAX], dap_time_t a_expires, // TS when the service expires