From 69ef25340c4cb2387de60092bc0d7d58a1a0bef2 Mon Sep 17 00:00:00 2001 From: George Date: Mon, 28 Oct 2024 16:42:30 -0700 Subject: [PATCH] Add hash to not-found test --- cmd/soroban-rpc/internal/methods/get_transaction_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/soroban-rpc/internal/methods/get_transaction_test.go b/cmd/soroban-rpc/internal/methods/get_transaction_test.go index 7c339481..91d6f0ce 100644 --- a/cmd/soroban-rpc/internal/methods/get_transaction_test.go +++ b/cmd/soroban-rpc/internal/methods/get_transaction_test.go @@ -37,7 +37,8 @@ func TestGetTransaction(t *testing.T) { require.NoError(t, err) require.Equal(t, GetTransactionResponse{ TransactionDetails: TransactionDetails{ - Status: TransactionStatusNotFound, + Status: TransactionStatusNotFound, + TransactionHash: hash, }, }, tx)