Wilmer Paulino

Results 71 comments of Wilmer Paulino

@sangaman yes! It's already gotten approvals, @Roasbeef is just the only one with merge access. I can take another look once rebased.

The project uses go modules for dependencies now. You can build the binary with `GO111MODULE=on go install ./dropwtxmgr`.

I believe `bitcoin-cli importprivkey` expects a private key in Wallet Import Format (WIF). See https://en.bitcoin.it/wiki/Wallet_import_format for more info.

@JFixby have you seen https://pkg.go.dev/github.com/btcsuite/[email protected]/wallet#Wallet.DumpWIFPrivateKey?

This should be addressed with the current master branches of `btcd` and `btcwallet`.

The btcd dependency needs to be updated in the project to point to master. We don't see this in lnd because it's enforcing a higher version.

Yeah, the patch below should do it. If you can't apply it locally, you can run the following commands within the top level directory of btcwallet: ``` $ go mod...

Nice catch! Confirmed `rust-lightning` matches these now.

Started tackling this over the weekend, planning to have a PR up soon.