Fix parse error

This commit is contained in:
Chloe Jung 2023-07-17 12:16:55 +12:00
parent 6609558f96
commit 598919fc2a

View file

@ -38,7 +38,7 @@ func Getboltcard(w http.ResponseWriter, r *http.Request) {
`"lnurlw_enable": "` + c.Lnurlw_enable + `",` +
`"tx_limit_sats": "` + strconv.Itoa(c.Tx_limit_sats) + `",` +
`"day_limit_sats": "` + strconv.Itoa(c.Day_limit_sats) + `", ` +
`"pin_enable": "` + strconv.Itoa(c.Pin_enable) + `", ` +
`"pin_enable": "` + c.Pin_enable + `", ` +
`"pin_limit_sats": "` + strconv.Itoa(c.Pin_limit_sats) + `"}`)
w.Header().Set("Content-Type", "application/json")