-
Notifications
You must be signed in to change notification settings - Fork 177
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
upgrading libp2p to version v0.14.1 #782
Conversation
Codecov Report
@@ Coverage Diff @@
## master #782 +/- ##
==========================================
- Coverage 56.42% 56.38% -0.05%
==========================================
Files 423 423
Lines 24783 24779 -4
==========================================
- Hits 13984 13971 -13
- Misses 8907 8911 +4
- Partials 1892 1897 +5
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
@@ -458,10 +458,7 @@ func blockEventsToMessage(block flow.BlockEvents) (*access.EventsResponse_Result | |||
for i, event := range block.Events { | |||
eventMessages[i] = convert.EventToMessage(event) | |||
} | |||
timestamp, err := ptypes.TimestampProto(block.BlockTimestamp) |
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.
@@ -27,14 +27,15 @@ require ( | |||
github.com/ipfs/go-log v1.0.4 | |||
github.com/jrick/bitset v1.0.0 | |||
github.com/libp2p/go-addr-util v0.0.2 | |||
github.com/libp2p/go-libp2p v0.13.0 | |||
github.com/libp2p/go-libp2p-core v0.8.0 | |||
github.com/libp2p/go-libp2p v0.14.1 |
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.
the crux of the change - go-libp2p
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.
Thanks for the upgrade Vishal.
Libp2p v0.14.1
The
stream reset
error that are being reported on mainnet and devnet could be because of the yamux issue.This change -
go mod tidy
.ptypes.TimestampProto
method withtimestamppb.New
.