From 3bdf0c242aa1da62be319f2131b9c14e396d23f9 Mon Sep 17 00:00:00 2001 From: Valery Antopol Date: Mon, 5 Feb 2024 22:45:47 +0400 Subject: [PATCH] feat(ABI, call-parameters)!: add worker_id field into CallParameters (#151) * add worker_id field into call_parameters * remove debug prints --- crates/call-parameters/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/call-parameters/src/lib.rs b/crates/call-parameters/src/lib.rs index 66fbe79..88a5591 100644 --- a/crates/call-parameters/src/lib.rs +++ b/crates/call-parameters/src/lib.rs @@ -94,9 +94,12 @@ pub struct CallParameters { /// Id of the service creator. pub service_creator_peer_id: String, - /// PeerId of the peer who hosts this service. + /// PeerId of the peer who hosts worker with this service. pub host_id: String, + /// PeerId of the worker who hosts this service. + pub worker_id: String, + /// Id of the particle which execution resulted a call this service. pub particle_id: String,