rpc: disallow a negative invoice amount in AddInvoice

This commit is contained in:
Stefan Menzel 2018-07-26 05:11:46 +02:00 committed by Olaoluwa Osuntokun
parent 8cd6eebadc
commit e776a06cfb

View File

@ -2445,6 +2445,12 @@ func (r *rpcServer) AddInvoice(ctx context.Context,
len(invoice.DescriptionHash), channeldb.MaxPaymentRequestSize)
}
// The value of the invoice must not be negative.
if invoice.Value < 0 {
return nil, fmt.Errorf("payments of negative value "+
"are not allowed, value is %v", invoice.Value)
}
amt := btcutil.Amount(invoice.Value)
amtMSat := lnwire.NewMSatFromSatoshis(amt)