From 99893eac5c0d0a6c13711e9bd96dad5c7b782225 Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Fri, 30 Jan 2026 16:34:52 +0300 Subject: [PATCH] include the ActiveSwapToDecimal on the SwapData --- store/swap.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/store/swap.go b/store/swap.go index 3510720..097ad4a 100644 --- a/store/swap.go +++ b/store/swap.go @@ -18,6 +18,7 @@ type SwapData struct { ActiveSwapFromAddress string ActiveSwapToSym string ActiveSwapToAddress string + ActiveSwapToDecimal string } type SwapPreviewData struct { @@ -43,6 +44,7 @@ func ReadSwapData(ctx context.Context, store DataStore, sessionId string) (SwapD "ActiveSwapFromAddress": storedb.DATA_ACTIVE_ADDRESS, "ActiveSwapToSym": storedb.DATA_ACTIVE_SWAP_TO_SYM, "ActiveSwapToAddress": storedb.DATA_ACTIVE_SWAP_TO_ADDRESS, + "ActiveSwapToDecimal": storedb.DATA_ACTIVE_SWAP_TO_DECIMAL, } v := reflect.ValueOf(&data).Elem()