go-ethereum-hdwallet
go-ethereum-hdwallet copied to clipboard
cannot find module providing package github.com/btcsuite/btcd/btcec
` $ 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
`
Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.
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
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
Looks like this package is using a very outdated reference to btcutil which has been rolled into the btcd repository.
yeah