mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-03 09:28:34 +02:00
routerrpc: add nil check for MilliSat
This commit is contained in:
parent
5235f3b24f
commit
35c9eecf4e
@ -519,7 +519,7 @@ func (s *Server) probePaymentRequest(ctx context.Context, paymentRequest string,
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if *payReq.MilliSat <= 0 {
|
||||
if payReq.MilliSat == nil || *payReq.MilliSat <= 0 {
|
||||
return nil, errors.New("payment request amount must be " +
|
||||
"greater than 0")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user