diff --git a/aquamarine-vm/src/stepper_outcome.rs b/aquamarine-vm/src/stepper_outcome.rs index 0818a36b..9da771e9 100644 --- a/aquamarine-vm/src/stepper_outcome.rs +++ b/aquamarine-vm/src/stepper_outcome.rs @@ -22,14 +22,14 @@ use crate::AquamarineVMError; use std::convert::TryFrom; use std::error::Error; -#[derive(Debug)] +#[derive(Debug, Clone, PartialEq, Eq)] pub(crate) struct RawStepperOutcome { pub ret_code: i32, pub data: String, pub next_peer_pks: Vec, } -#[derive(Debug)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct StepperOutcome { pub data: String, pub next_peer_pks: Vec,