diff --git a/dap_chain_net_srv.c b/dap_chain_net_srv.c index 5d3a66c8b89a3d7aa2e370b71e169a1eb4ec9fb3..327403f78a15097f21e7f07de3e47e94a61055f8 100755 --- a/dap_chain_net_srv.c +++ b/dap_chain_net_srv.c @@ -540,7 +540,7 @@ dap_chain_datum_tx_receipt_t * dap_chain_net_srv_issue_receipt(dap_chain_net_srv { dap_chain_datum_tx_receipt_t * l_receipt = dap_chain_datum_tx_receipt_create( a_srv->uid, a_price->units_uid, a_price->units, a_price->value_datoshi); - size_t l_receipt_size = sizeof(dap_chain_receipt_t)+1; // nested receipt plus 8 bits for type + size_t l_receipt_size = sizeof(dap_chain_receipt_info_t)+1; // nested receipt plus 8 bits for type // Sign with our wallet l_receipt_size = dap_chain_datum_tx_receipt_sign_add(l_receipt,l_receipt_size , dap_chain_wallet_get_key( a_usage->wallet,0) ); diff --git a/dap_chain_net_srv_common.h b/dap_chain_net_srv_common.h index e251d16878f2e48a43a0af18183d4321c1215efe..6bfb856178dcae96efcc13d1187b82b5a4d1c29a 100755 --- a/dap_chain_net_srv_common.h +++ b/dap_chain_net_srv_common.h @@ -94,6 +94,7 @@ typedef struct dap_chain_net_srv_price #define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_REQUEST 0x01 #define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_SIGN_REQUEST 0x10 #define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_SIGN_RESPONSE 0x11 +#define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_NOTIFY_STOPPED 0x20 #define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_RESPONSE_SUCCESS 0xf0 #define DAP_STREAM_CH_CHAIN_NET_SRV_PKT_TYPE_RESPONSE_ERROR 0xff @@ -119,6 +120,7 @@ typedef struct dap_stream_ch_chain_net_srv_pkt_request_hdr{ dap_chain_net_id_t net_id;// Network id wheither to request dap_chain_hash_fast_t tx_cond; // Conditioned transaction with paymemt for dap_chain_net_srv_uid_t srv_uid; + char token[DAP_CHAIN_TICKER_SIZE_MAX]; } DAP_ALIGN_PACKED dap_stream_ch_chain_net_srv_pkt_request_hdr_t; typedef struct dap_stream_ch_chain_net_srv_pkt_request{