Skip to content

Commit

Permalink
Surface ignored error in getRawLedgerEntries() (stellar#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio authored May 10, 2024
1 parent e1ee170 commit d088562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/internal/db/ledgerentry.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (l *ledgerEntryReadTx) getRawLedgerEntries(keys ...string) (map[string]stri
}
}
}
return result, nil
return result, q.Err()
}

func GetLedgerEntry(tx LedgerEntryReadTx, key xdr.LedgerKey) (bool, xdr.LedgerEntry, *uint32, error) {
Expand Down

0 comments on commit d088562

Please sign in to comment.