rpcserver: validate FinalCltvDelta and CltvLimit for REST

Missed this check in PR #5293.
This commit is contained in:
eugene 2021-07-30 11:41:11 -04:00
parent 07fa98fca5
commit d0191cb5ed
No known key found for this signature in database
GPG Key ID: 118759E83439A9B1

View File

@ -4339,6 +4339,14 @@ func (r *rpcServer) extractPaymentIntent(rpcPayReq *rpcPaymentRequest) (rpcPayme
return payIntent, err
}
// Do bounds checking with the block padding.
err = routing.ValidateCLTVLimit(
payIntent.cltvLimit, payIntent.cltvDelta, true,
)
if err != nil {
return payIntent, err
}
return payIntent, nil
}