go-ethereum-hdwallet icon indicating copy to clipboard operation
go-ethereum-hdwallet copied to clipboard

cannot find module providing package github.com/btcsuite/btcd/btcec

Open jeffcail opened this issue 9 months ago • 4 comments

` $ go get github.com/miguelmota/go-ethereum-hdwallet

go: github.com/miguelmota/go-ethereum-hdwallet imports github.com/btcsuite/btcutil/hdkeychain imports github.com/btcsuite/btcd/btcec: cannot find module providing package github.com/btcsuite/btcd/btcec

`

jeffcail avatar Apr 25 '24 03:04 jeffcail

Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.

shakefu avatar May 29 '24 22:05 shakefu

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

bu avatar May 31 '24 19:05 bu

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

as time of writing this message (2024-06-01), put this line in your go.mod

replace github.com/btcsuite/btcutil => github.com/btcsuite/btcd/btcutil v1.1.5

should fix same issue to #30

ok, Tank yoou, I will try this

jeffcail avatar Jun 22 '24 17:06 jeffcail

Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.

yeah

jeffcail avatar Jun 22 '24 17:06 jeffcail