channeldb: eliminate extra copy in QueryPayments

In this commit, we eliminate an extraneous copy in the `QueryPayments`
method. Before this commit, we would copy each payment from the initial
FetchPayments call into a new slice. However, pointers to payments are
return from `FetchPayments`, so we can just maintain that same reference
rather than copying again when we want to limit our response.
This commit is contained in:
Olaoluwa Osuntokun
2020-05-04 12:13:47 -07:00
parent 315c56607c
commit cc1dbb5677
2 changed files with 3 additions and 3 deletions

View File

@ -5191,7 +5191,7 @@ func (r *rpcServer) ListPayments(ctx context.Context,
for _, payment := range paymentsQuerySlice.Payments {
payment := payment
rpcPayment, err := r.routerBackend.MarshallPayment(&payment)
rpcPayment, err := r.routerBackend.MarshallPayment(payment)
if err != nil {
return nil, err
}