From 156a8599110caf01036f6b126af830930d1ed818 Mon Sep 17 00:00:00 2001 From: im-adithya Date: Mon, 27 Apr 2026 18:57:55 +0530 Subject: [PATCH] chore: remove unused json tags on swap struct --- swaps/swaps_service.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/swaps/swaps_service.go b/swaps/swaps_service.go index 8a9a82a3..6de1f10a 100644 --- a/swaps/swaps_service.go +++ b/swaps/swaps_service.go @@ -93,11 +93,11 @@ type MempoolTx struct { } type SwapInfo struct { - AlbyServiceFee float64 `json:"albyServiceFee"` - BoltzServiceFee float64 `json:"boltzServiceFee"` - BoltzNetworkFeeSat uint64 `json:"boltzNetworkFeeSat"` - MinAmountSat uint64 `json:"minAmountSat"` - MaxAmountSat uint64 `json:"maxAmountSat"` + AlbyServiceFee float64 + BoltzServiceFee float64 + BoltzNetworkFeeSat uint64 + MinAmountSat uint64 + MaxAmountSat uint64 } type SwapResponse struct {