You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tagged btcwallet v0.13.0 currently specifies wtxmgr v1.3.0 in the go.mod, however a newer revision of wtxmgr that has the InsertTxCheckIfExists method is actually required. A consumer must add a replace to their project's go.mod if they wish to use btcwallet v0.13.0. e.g.
Consumers can work around this as above, but perhaps a tag and updated require is something for the next patch release. I find that when tagging releases, that removing replace statements is helpful to smoke out such things, however minor they are.
Alternatively, btcwallet might consider removing wtxmgr as a standalone module, in favor of absorbing it into the main module. I'm not familiar with use cases for wtxmgr that might be sensible without the root module in use as well.
The text was updated successfully, but these errors were encountered:
chappjc
changed the title
btcwallet 0.13 btxmgr go.mod require needs update
btcwallet 0.13 wtxmgr go.mod require needs update
Nov 23, 2021
btcwallet/go.mod
Line 12 in 559f6ef
The tagged btcwallet v0.13.0 currently specifies wtxmgr v1.3.0 in the go.mod, however a newer revision of wtxmgr that has the
InsertTxCheckIfExists
method is actually required. A consumer must add a replace to their project's go.mod if they wish to use btcwallet v0.13.0. e.g.github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20211113022102-559f6eff0e52
Consumers can work around this as above, but perhaps a tag and updated
require
is something for the next patch release. I find that when tagging releases, that removingreplace
statements is helpful to smoke out such things, however minor they are.Alternatively, btcwallet might consider removing
wtxmgr
as a standalone module, in favor of absorbing it into the main module. I'm not familiar with use cases for wtxmgr that might be sensible without the root module in use as well.The text was updated successfully, but these errors were encountered: