diff --git a/src/types.rs b/src/types.rs index efe61ab..62409ee 100644 --- a/src/types.rs +++ b/src/types.rs @@ -33,7 +33,7 @@ pub struct BalanceResponse { } #[doc = " The value of the Crossover and the blinder"] #[derive(Clone, PartialEq, Debug, Deserialize, Serialize)] -pub struct Crossover { +pub struct CrossoverType { #[doc = " The rkyv serialized blinder of the crossover"] pub blinder: Vec, #[doc = " The rkyv serialized bytes of the crossover struct"] @@ -49,7 +49,7 @@ pub struct ExecuteArgs { pub call: Option, #[doc = " The crossover value"] #[serde(skip_serializing_if = "Option::is_none")] - pub crossover: Option, + pub crossover: Option, #[doc = " A rkyv serialized Fee"] pub fee: Vec, #[doc = " The gas limit of the transaction"]