From d4629e3bfd8da590a49e4752c0c69d0e6297c29d Mon Sep 17 00:00:00 2001 From: George Date: Wed, 25 Oct 2023 09:38:32 -0700 Subject: [PATCH] Fix typo in JSON-encoded field for a `getLedgerEntries` result --- cmd/soroban-rpc/internal/methods/get_ledger_entries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/soroban-rpc/internal/methods/get_ledger_entries.go b/cmd/soroban-rpc/internal/methods/get_ledger_entries.go index d37347ef5..b7c9c326b 100644 --- a/cmd/soroban-rpc/internal/methods/get_ledger_entries.go +++ b/cmd/soroban-rpc/internal/methods/get_ledger_entries.go @@ -27,7 +27,7 @@ type LedgerEntryResult struct { // Last modified ledger for this entry. LastModifiedLedger int64 `json:"lastModifiedLedgerSeq,string"` // The ledger sequence until the entry is live, available for entries that have associated ttl ledger entries. - LiveUntilLedgerSeq *uint32 `json:"liveUntilLedgerSeqLedgerSeq,string,omitempty"` + LiveUntilLedgerSeq *uint32 `json:"liveUntilLedgerSeq,string,omitempty"` } type GetLedgerEntriesResponse struct {