From 6bc9247acbcb2977db30652cbc0c21c3596db9e4 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Wed, 18 Feb 2026 17:08:11 +0300 Subject: [PATCH] updated the data keys on the test to match the retrieved data --- store/tokens_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/tokens_test.go b/store/tokens_test.go index 34cca1e..de4a646 100644 --- a/store/tokens_test.go +++ b/store/tokens_test.go @@ -221,7 +221,7 @@ func TestReadTransactionData(t *testing.T) { // Test transaction data transactionData := map[storedb.DataTyp]string{ - storedb.DATA_TEMPORARY_VALUE: "0712345678", + storedb.DATA_RECIPIENT_INPUT: "0712345678", storedb.DATA_ACTIVE_SYM: "SRF", storedb.DATA_AMOUNT: "1000000", storedb.DATA_PUBLIC_KEY: publicKey, @@ -238,7 +238,7 @@ func TestReadTransactionData(t *testing.T) { } expectedResult := TransactionData{ - TemporaryValue: "0712345678", + RecipientInput: "0712345678", ActiveSym: "SRF", Amount: "1000000", PublicKey: publicKey,