Fixes/improvements for lnurl-pay #49
@ -6,8 +6,8 @@ class LnurlpayController < ApplicationController
|
||||
status: "OK",
|
||||
callback: "https://accounts.kosmos.org/lnurlpay/#{@user.address}/invoice",
|
||||
tag: "payRequest",
|
||||
maxSendable: 1000000,
|
||||
minSendable: 1000,
|
||||
maxSendable: 1000000 * 1000, # msat
|
||||
minSendable: 1000 * 1000, # msat
|
||||
|
raucao marked this conversation as resolved
Outdated
|
||||
metadata: metadata(@user.address),
|
||||
commentAllowed: 0
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user
minimum of 1000 sats? isn't that a bit much?
I lowered it to 100 now.