Skip to content

Commit

Permalink
Merge branch 'main' into viktar/reworking-cargo-vet
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJOHN974 committed Jan 29, 2025
2 parents 390cd90 + 1f5f6a6 commit c057f02
Show file tree
Hide file tree
Showing 53 changed files with 2,106 additions and 1,947 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// DepositUpdate : A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// DepositUpdate : A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DepositUpdate {
/// Output index on the bitcoin transaction associated with this specific deposit.
Expand Down Expand Up @@ -41,7 +41,7 @@ pub struct DepositUpdate {
}

impl DepositUpdate {
/// A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
pub fn new(
bitcoin_tx_output_index: u32,
bitcoin_txid: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// WithdrawalUpdate : A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// WithdrawalUpdate : A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WithdrawalUpdate {
#[serde(
Expand All @@ -38,7 +38,7 @@ pub struct WithdrawalUpdate {
}

impl WithdrawalUpdate {
/// A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
pub fn new(
last_update_block_hash: String,
last_update_height: u64,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// DepositUpdate : A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// DepositUpdate : A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DepositUpdate {
/// Output index on the bitcoin transaction associated with this specific deposit.
Expand Down Expand Up @@ -41,7 +41,7 @@ pub struct DepositUpdate {
}

impl DepositUpdate {
/// A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
pub fn new(
bitcoin_tx_output_index: u32,
bitcoin_txid: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// WithdrawalUpdate : A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// WithdrawalUpdate : A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WithdrawalUpdate {
#[serde(
Expand All @@ -38,7 +38,7 @@ pub struct WithdrawalUpdate {
}

impl WithdrawalUpdate {
/// A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
pub fn new(
last_update_block_hash: String,
last_update_height: u64,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// DepositUpdate : A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// DepositUpdate : A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DepositUpdate {
/// Output index on the bitcoin transaction associated with this specific deposit.
Expand Down Expand Up @@ -41,7 +41,7 @@ pub struct DepositUpdate {
}

impl DepositUpdate {
/// A singlular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
/// A singular Deposit update that contains only the fields pertinent to updating the status of a deposit. This includes the key related data in addition to status history related data.
pub fn new(
bitcoin_tx_output_index: u32,
bitcoin_txid: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::models;
use serde::{Deserialize, Serialize};

/// WithdrawalUpdate : A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// WithdrawalUpdate : A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WithdrawalUpdate {
#[serde(
Expand All @@ -38,7 +38,7 @@ pub struct WithdrawalUpdate {
}

impl WithdrawalUpdate {
/// A singlular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
/// A singular Withdrawal update that contains only the fields pertinent to updating the status of a withdrawal. This includes the key related data in addition to status history related data.
pub fn new(
last_update_block_hash: String,
last_update_height: u64,
Expand Down
Loading

0 comments on commit c057f02

Please sign in to comment.