crypto-power / cryptopower

A cross-platform SPV (DCR, BTC & LTC) privacy wallet built with go.
ISC License
42 stars 27 forks source link

Upgrade github.com/btcsuite/btcwallet #233

Open ukane-philemon opened 11 months ago

ukane-philemon commented 11 months ago

The version of github.com/btcsuite/btcwallet used in dcrdex is v0.16.10-0.20230706223227-037580c66b74 and it contains some breaking changes as some methods have been removed: chain.NeutrinoChainService.Peers() and chain.NeutrinoChainService.ConnectedCount()

This change is required for #209 and #220.

itswisdomagain commented 11 months ago

Add a replace directive to the go.mod file to force the project to use the older version. I've bumped the version in another branch but it'll take a while for that to get into master as it contains some other extensive changes.

ukane-philemon commented 11 months ago

Okay