Oli
Oli
Deriving the public keys isn't the hard part. A 32-byte (x-only) public key is just the compressed, 33-byte public key with the first byte chopped off. There's a `lift_x` method...
Hi @ibudisteanu, thanks! What you are describing is what's called a threshold signature. I did start a branch for that (https://github.com/guggero/bip-schnorr/tree/threshold-signatures) but then I noticed that even Blockstream hadn't decided...
If your `channel.backup` file does not contain a channel (because it is from _before_ you opened the channel) then the summary command won't find the channel either. What you need...
Were you able to resolve your issue and rescue the channel?
I did add a new way to run `chantools fakechanbackup` that looks at the graph to find public channels and then create a fake `channel.backup` file from that. So if...
The parallelism in `vanitygen` uses `runtime.GOMAXPROCS` (https://pkg.go.dev/runtime). Maybe that doesn't scale very well to a high core count? I don't have much experience with highly parallel code to be honest....
I'm assuming you mean the "Hierarchical Deterministic Wallet" page? The main reason to distinguish between BIP44/49/84 is because the encoding of the HD root node key is different for each...
Here's the diff I'm proposing: ```diff diff --git a/lnwallet/btcwallet/btcwallet.go b/lnwallet/btcwallet/btcwallet.go index 14f9e3d7d..58db4322e 100644 --- a/lnwallet/btcwallet/btcwallet.go +++ b/lnwallet/btcwallet/btcwallet.go @@ -739,29 +739,48 @@ func (b *BtcWallet) ListAddresses(name string) ( } for _,...
Could you rebase the PR please? I'm going to take over the review for @halseth. > I am still not sure how to handle both the MaxFundingAmount and the minChanFundingSize...
No worries. I'll have a look at it today and test it more thoroughly.