feat(ABI, call-parameters)!: add worker_id field into CallParameters (#151)

* add worker_id field into call_parameters

* remove debug prints
This commit is contained in:
Valery Antopol 2024-02-05 22:45:47 +04:00 committed by GitHub
parent e112719b24
commit 3bdf0c242a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,