pull down to refresh
0 sats \ 7 replies \ @0xbitcoiner 3h \ on: Knots 0.29 per default does not relay non-coop lightning closes bitcoin
What's the default setting for Knots to relay those transactions?
I think these settings are related:
-permitephemeral (which is "anchor" in knots)
-mempooltruc
reply
I did a quick search but couldn’t find a page that explains all the settings. Do you know if there’s one that shows and explains everything?
reply
Maybe this helps you (its for core):
https://jlopp.github.io/bitcoin-core-config-generator/
Default policy settings for Knots can be found here:
https://github.com/bitcoinknots/bitcoin/blob/e730018a8288275e9ffb27f04ebe216376465207/src/policy/policy.h
reply
I didn’t see those parameters, am I missing something?
reply
permitephemeral does not exist in Bitcoin Core
reply
Oops! In Knots, the '-permitephemeral' parameter has three options (send, dust, and anchor). If we wanna enable all three, should the file look like this?
-permitephemeral=send
-permitephemeral=dust
-permitephemeral=anchor
Would be nice if there was a site that broke down every parameter properly.
reply
I think it is like this:
-permitephemeral=send,dust,anchor
Relay transaction packages that include ephemeral outputs defined by comma-separated options (prefix each by '-' to force off): "anchor" to allow minimal anyone-can-spend anchors, "send" to allow ordinary output types to be considered ephemeral, and "dust" to allow for dust-amount outputs rather than strictly zero-value (default: %s)", "anchor,-send,-dust"
reply