Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/conformance/chaos/cbor_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion venus-component/libp2p/exchange/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type client struct {
var _ exchange.Client = (*client)(nil)

// NewClient creates a new libp2p-based exchange.Client that uses the libp2p
// ChainExhange protocol as the fetching mechanism.
// ChainExchange protocol as the fetching mechanism.
func NewClient(lc fx.Lifecycle, host host.Host, pmgr libp2p.PeerManager) exchange.Client {
return &client{
host: host,
Expand Down
2 changes: 1 addition & 1 deletion venus-shared/actors/aerrors/wrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func Wrap(err ActorError, message string) ActorError {
}
}

// Wrapf extens chain of errors with a message
// Wrapf extends chain of errors with a message
func Wrapf(err ActorError, format string, args ...interface{}) ActorError {
if err == nil {
return nil
Expand Down
Loading