-
Notifications
You must be signed in to change notification settings - Fork 2.2k
mod+multi: bump neutrino to v0.16.2 and btcwallet to 70a94ea #10629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
3bcb0f4
0b351fd
ede5d53
3239af8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -548,7 +548,7 @@ jobs: | |
| fail-fast: false | ||
| matrix: | ||
| pinned_dep: | ||
| - google.golang.org/grpc v1.59.0 | ||
| - google.golang.org/grpc v1.79.1 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you still need to update the repo-rules for the grpc check, because iirc just updating the CI file is not all we must have configured it somewhere else as well. |
||
| - github.com/golang/protobuf v1.5.4 | ||
|
|
||
| steps: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1806,7 +1806,7 @@ func initNeutrinoBackend(ctx context.Context, cfg *Config, chainDir string, | |
| "client: %v", err) | ||
| } | ||
|
|
||
| if err := neutrinoCS.Start(); err != nil { | ||
| if err := neutrinoCS.Start(context.Background()); err != nil { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Q: why Think this should be: if err := neutrinoCS.Start(ctx); err != nil {
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will pass it thru. |
||
| db.Close() | ||
| return nil, nil, err | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit commit msg comment is misleading we upgraded the grpc library to the latest stable release, the btcwallet only requires 1.73