Skip to content

Commit

Permalink
services/horizon: Fix ledger endpoint url in HAL (#4928)
Browse files Browse the repository at this point in the history
  • Loading branch information
urvisavla authored Jun 22, 2023
1 parent 34484c6 commit 9e32d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/horizon/internal/resourceadapter/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func PopulateRoot(
dest.Links.AccountTransactions = lb.PagedLink("/accounts/{account_id}/transactions")
dest.Links.Assets = lb.Link("/assets{?asset_code,asset_issuer,cursor,limit,order}")
dest.Links.Effects = lb.Link("/effects{?cursor,limit,order}")
dest.Links.Ledger = lb.Link("/ledger/{sequence}")
dest.Links.Ledger = lb.Link("/ledgers/{sequence}")
dest.Links.Ledgers = lb.Link("/ledgers{?cursor,limit,order}")
dest.Links.FeeStats = lb.Link("/fee_stats")
dest.Links.Operation = lb.Link("/operations/{id}")
Expand Down

0 comments on commit 9e32d8c

Please sign in to comment.