Skip to content

Commit 5759b36

Browse files
authored
fix: include machine kind in machine events (#83)
So downstream tools can filter on machine kind. Signed-off-by: Sander Pick <[email protected]>
1 parent fa69b46 commit 5759b36

File tree

3 files changed

+173
-138
lines changed

3 files changed

+173
-138
lines changed

crates/facade/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -301,21 +301,24 @@ pub mod machine {
301301
use std::collections::HashMap;
302302

303303
pub fn machine_created(
304+
kind: u8,
304305
owner: Address,
305306
metadata: &HashMap<String, String>,
306307
) -> Result<IMachineFacadeEvents> {
307308
let owner: H160 = owner.try_into()?;
308309
let metadata = fvm_ipld_encoding::to_vec(metadata)?;
309310
Ok(IMachineFacadeEvents::MachineCreated(MachineCreated {
311+
kind,
310312
owner: owner.into(),
311313
metadata: metadata.into(),
312314
}))
313315
}
314316

315-
pub fn machine_initialized(machine_address: Address) -> Result<IMachineFacadeEvents> {
317+
pub fn machine_initialized(kind: u8, machine_address: Address) -> Result<IMachineFacadeEvents> {
316318
let machine_address: H160 = machine_address.try_into()?;
317319
Ok(IMachineFacadeEvents::MachineInitialized(
318320
MachineInitialized {
321+
kind,
319322
machineAddress: machine_address.into(),
320323
},
321324
))

0 commit comments

Comments
 (0)