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