Skip to content

Commit

Permalink
Add required fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSasaPrsic committed Jun 20, 2024
1 parent 59b8c47 commit fb42823
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ struct RangeBlocksAPIResponse {
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct Transaction {
source_chain: Option<Chain>,
destination_chain: Option<Chain>,
message_id: Option<u64>,
status: Option<Status>,
source_chain: Chain,
destination_chain: Chain,
message_id: u64,
status: Status,
source_transaction_hash: Option<String>,
source_transaction_block_number: Option<u64>,
source_transaction_index: Option<u32>,
Expand Down

0 comments on commit fb42823

Please sign in to comment.