Skip to content

Commit

Permalink
Make boltzv2 Fees fields public (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
dni authored Jun 25, 2024
1 parent feb17d3 commit f0351a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/swaps/boltzv2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ pub struct Limits {
#[serde(rename_all = "camelCase")]
pub struct Fees {
/// The percentage of the "send amount" that is charged by Boltz as "Boltz Fee".
percentage: f64,
pub percentage: f64,
/// The network fees charged for locking up and claiming funds onchain. These values are absolute, denominated in 10 ** -8 of the quote asset.
miner_fees: u64,
pub miner_fees: u64,
}

/// Various swap parameters associated with different assets.
Expand Down

0 comments on commit f0351a6

Please sign in to comment.