Skip to content
Open
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 fstore/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/blessnetwork/b7s/models/bls"
)

// updateDeployment info will add some missing information to the deployment info,
// updateDeploymentInfo will add some missing information to the deployment info,
// based on the info found in the manifest URL.
func updateDeploymentInfo(manifest *bls.FunctionManifest, manifestAddress string) error {

Expand Down
2 changes: 1 addition & 1 deletion host/host_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestDetermineAddressProtocol(t *testing.T) {
shouldErr: true,
},
{
// Documenting that we do NOT support support certain things:
// Documenting that we do NOT support certain things:
//
// While the Domain Name System (DNS) technically supports arbitrary sequences of octets in domain name labels,
// the DNS standards recommend the use of the LDH (letter-digit-hyphen) subset of ASCII conventionally used for
Expand Down
2 changes: 1 addition & 1 deletion node/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (c *core) Send(ctx context.Context, to peer.ID, msg bls.Message) error {
return nil
}

// sendToMany serializes the message and sends it to a number of peers. `requireAll` dictates how we treat partial errors.
// SendToMany serializes the message and sends it to a number of peers. `requireAll` dictates how we treat partial errors.
func (c *core) SendToMany(ctx context.Context, peers []peer.ID, msg bls.Message, requireAll bool) error {

opts := new(messageSpanConfig).pipeline(DirectMessagePipeline).peers(peers...).spanOpts()
Expand Down