You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an option to specify a custom signet tx to check (#3088)
This change enables custom signets by allowing the user to specify the txid of a transaction to check or "" to skip this check for signet. See issue #3078.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -284,11 +284,12 @@ eclair.chain = "regtest"
284
284
eclair.bitcoind.rpcport=18443
285
285
```
286
286
287
-
For signet, add `signet=1` in `bitcoin.conf` or start with `-signet`, and modify `eclair.conf`:
287
+
For signet, add `signet=1` in `bitcoin.conf` or start with `-signet`, and modify `eclair.conf` as follows. The `signet-check-tx` config parameter should be the txid of a transaction that exists in your signet, "" to skip this check, or if not specified, the default signet txid value will be used.
288
288
289
289
```conf
290
290
eclair.chain = "signet"
291
291
eclair.bitcoind.rpcport=38332
292
+
eclair.bitcoind.signet-check-tx=<txid of signet tx>
292
293
```
293
294
294
295
You may also want to take advantage of the new configuration sections in `bitcoin.conf` to manage parameters that are network specific,
Copy file name to clipboardExpand all lines: docs/release-notes/eclair-vnext.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,8 @@ This removes the need for increasing the commitment feerate based on mempool con
22
22
23
23
- The default for `eclair.features.option_channel_type` is now `mandatory` instead of `optional`. This change prepares nodes to always assume the behavior of `option_channel_type` from peers when Bolts PR [#1232](https://github.com/lightning/bolts/pull/1232) is adopted. Until [#1232](https://github.com/lightning/bolts/pull/1232) is adopted you can still set `option_channel_type` to `optional` in your `eclair.conf` file for specific peers that do not yet support this option, see `Configure.md` for more information.
24
24
25
+
- We added a configuration parameter to facilitate custom signet use. The parameter `eclair.bitcoind.signet-check-tx` should be set to the txid of a transaction that exists in your signet or set to "" to skip this check. See issue [#3079](https://github.com/ACINQ/eclair/issues/3078) for details.
26
+
25
27
### Miscellaneous improvements and bug fixes
26
28
27
29
#### Remove confirmation scaling based on funding amount
0 commit comments