From 0511acd5e66401e4ad008191701f2be741084174 Mon Sep 17 00:00:00 2001 From: Mikelle Date: Wed, 31 Mar 2021 12:48:49 +0300 Subject: [PATCH] fixed txshistory_test.go --- api/txshistory_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/txshistory_test.go b/api/txshistory_test.go index 6735f15..0fc638a 100644 --- a/api/txshistory_test.go +++ b/api/txshistory_test.go @@ -325,7 +325,7 @@ func TestGetHistoryTxs(t *testing.T) { assert.NoError(t, err) path = fmt.Sprintf( "%s?fromAccountIndex=%s&toAccountIndex=%s&limit=%d", - endpoint, idx, idx, limit, + endpoint, idxStr, idxStr, limit, ) err = doGoodReqPaginated(path, historydb.OrderAsc, &testTxsResponse{}, appendIter) assert.NoError(t, err)