From af76541c86a91988e30d7b7008d79730a987013d Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Tue, 28 Oct 2025 11:09:33 +0300 Subject: [PATCH] added the USD voucher to the TokenHoldings --- testutil/testservice/account_service.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/testutil/testservice/account_service.go b/testutil/testservice/account_service.go index a0240f8..4f5121d 100644 --- a/testutil/testservice/account_service.go +++ b/testutil/testservice/account_service.go @@ -34,12 +34,18 @@ func (tas *TestAccountService) TrackAccountStatus(ctx context.Context, publicKey func (tas *TestAccountService) FetchVouchers(ctx context.Context, publicKey string) ([]dataserviceapi.TokenHoldings, error) { return []dataserviceapi.TokenHoldings{ - dataserviceapi.TokenHoldings{ + { TokenAddress: "0x6CC75A06ac72eB4Db2eE22F781F5D100d8ec03ee", TokenSymbol: "SRF", TokenDecimals: "6", Balance: "2745987", }, + { + TokenAddress: "0x3f195a3F68BF4c6D49748eFa033a00C6634fF311", + TokenSymbol: "USD", + TokenDecimals: "6", + Balance: "4269100", + }, }, nil } @@ -120,4 +126,3 @@ func (m TestAccountService) CheckTokenInPool(ctx context.Context, poolAddress, t func (m TestAccountService) GetCreditSendMaxLimit(ctx context.Context, poolAddress, fromTokenAddress, toTokenAddress, publicKey string) (*models.CreditSendLimitsResult, error) { return &models.CreditSendLimitsResult{}, nil } -