From f0351a61e7339acd97484e60658b3ee43baec4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 25 Jun 2024 17:45:51 +0200 Subject: [PATCH] Make boltzv2 Fees fields public (#52) --- src/swaps/boltzv2.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/swaps/boltzv2.rs b/src/swaps/boltzv2.rs index c57c0cb..d605668 100644 --- a/src/swaps/boltzv2.rs +++ b/src/swaps/boltzv2.rs @@ -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.