routerrpc: fix wrong error messages

when payment_hash or final_cltv_delta and payment_request was set, the error message showed that the parameters shouldn't be set with dest instead of payment_request

[skip ci]
This commit is contained in:
kon 2021-12-08 17:23:25 +01:00
parent 71b23a2c54
commit 59b215fe09

View file

@ -661,11 +661,11 @@ func (r *RouterBackend) extractIntentFromSendRequest(
"cannot appear together")
case len(rpcPayReq.PaymentHash) > 0:
return nil, errors.New("dest and payment_hash " +
return nil, errors.New("payment_hash and payment_request " +
"cannot appear together")
case rpcPayReq.FinalCltvDelta != 0:
return nil, errors.New("dest and final_cltv_delta " +
return nil, errors.New("final_cltv_delta and payment_request " +
"cannot appear together")
}