mirror of
				https://github.com/bumi/lntip
				synced 2025-10-31 04:32:31 +00:00 
			
		
		
		
	Better error logging for the LNURL endpoint
This checks for errors when creating the invoice and logs the error and returns an LNURL error response. Before it would return a blank pr.
This commit is contained in:
		
							parent
							
								
									3200622b97
								
							
						
					
					
						commit
						3b7ac31615
					
				
							
								
								
									
										5
									
								
								lnme.go
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								lnme.go
									
									
									
									
									
								
							| @ -164,11 +164,16 @@ func main() { | ||||
| 				stdOutLogger.Printf("New LightningAddress request amount: %s", amount) | ||||
| 				msats, err := strconv.ParseInt(amount, 10, 64) | ||||
| 				if err != nil || msats < 1000 { | ||||
| 					stdOutLogger.Printf("Invalid amount: %s", amount) | ||||
| 					return c.JSON(http.StatusOK, lnurl.LNURLErrorResponse{Status: "ERROR", Reason: "Invalid Amount"}) | ||||
| 				} | ||||
| 				sats := msats / 1000 // we need sats | ||||
| 				metadataHash := sha256.Sum256([]byte(lnurlMetadata)) | ||||
| 				invoice, err := lnClient.AddInvoice(sats, lightningAddress, metadataHash[:]) | ||||
| 				if err != nil { | ||||
| 					stdOutLogger.Printf("Error creating invoice: %s", err) | ||||
| 					return c.JSON(http.StatusOK, lnurl.LNURLErrorResponse{Status: "ERROR", Reason: "Server Error"}) | ||||
| 				} | ||||
| 				lnurlPayResponse2 := lnurl.LNURLPayResponse2{ | ||||
| 					LNURLResponse: lnurl.LNURLResponse{Status: "OK"}, | ||||
| 					PR:            invoice.PaymentRequest, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user