Skip to content

Commit

Permalink
Regenerate types.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daksh14 committed Nov 1, 2023
1 parent 2356103 commit 70078b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<u8>,
#[doc = " The rkyv serialized bytes of the crossover struct"]
Expand All @@ -49,7 +49,7 @@ pub struct ExecuteArgs {
pub call: Option<ExecuteCall>,
#[doc = " The crossover value"]
#[serde(skip_serializing_if = "Option::is_none")]
pub crossover: Option<Crossover>,
pub crossover: Option<CrossoverType>,
#[doc = " A rkyv serialized Fee"]
pub fee: Vec<u8>,
#[doc = " The gas limit of the transaction"]
Expand Down

0 comments on commit 70078b1

Please sign in to comment.