Merge pull request #6071 from sputn1ck/fix-error-msgs

routerrpc: fix wrong error messages
This commit is contained in:
Oliver Gugger 2021-12-09 10:54:22 +01:00 committed by GitHub
commit 94bbad3fd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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")
}