Skip to content

Commit

Permalink
feat(ABI, call-parameters)!: add worker_id field into CallParameters (#…
Browse files Browse the repository at this point in the history
…151)

* add worker_id field into call_parameters

* remove debug prints
  • Loading branch information
ValeryAntopol authored Feb 5, 2024
1 parent e112719 commit 3bdf0c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/call-parameters/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down

0 comments on commit 3bdf0c2

Please sign in to comment.