rpc: don't return an error if no payments exist for ListPayments
This commit is contained in:
parent
a393362eb8
commit
71bb430836
@ -1648,7 +1648,7 @@ func (r *rpcServer) ListPayments(context.Context,
|
||||
rpcsLog.Debugf("[ListPayments]")
|
||||
|
||||
payments, err := r.server.chanDB.FetchAllPayments()
|
||||
if err != nil {
|
||||
if err != nil && err != channeldb.ErrNoPaymentsCreated {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user