From 8d259683a1e39773d31855063a0f5937634cebc9 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Wed, 18 Feb 2026 16:08:47 +0300 Subject: [PATCH] fetch the DATA_RECIPIENT_INPUT instead of temporary value --- store/tokens.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/tokens.go b/store/tokens.go index 0ac7bdf..566097b 100644 --- a/store/tokens.go +++ b/store/tokens.go @@ -13,7 +13,7 @@ import ( ) type TransactionData struct { - TemporaryValue string + RecipientInput string ActiveSym string Amount string PublicKey string @@ -77,7 +77,7 @@ func ParseAndScaleAmount(storedAmount, activeDecimal string) (string, error) { func ReadTransactionData(ctx context.Context, store DataStore, sessionId string) (TransactionData, error) { data := TransactionData{} fieldToKey := map[string]storedb.DataTyp{ - "TemporaryValue": storedb.DATA_TEMPORARY_VALUE, + "RecipientInput": storedb.DATA_RECIPIENT_INPUT, "ActiveSym": storedb.DATA_ACTIVE_SYM, "Amount": storedb.DATA_AMOUNT, "PublicKey": storedb.DATA_PUBLIC_KEY,