Skip to content
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

Fix: Update Copyright Years and Improve Code Comments #3742

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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 snow/consensus/snowball/binary_snowflake.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These headers are on every file in the whole repo. I don't think it makes sense to randomly update these couple.

// See the file LICENSE for licensing terms.

package snowball
Expand Down
2 changes: 1 addition & 1 deletion snow/engine/snowman/bootstrap/bootstrapper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.

package bootstrap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.

package main
Expand Down Expand Up @@ -85,7 +85,7 @@ func main() {
log.Fatalf("failed to start peer: %s\n", err)
}

mesageBuilder, err := p2pmessage.NewCreator(
messageBuilder, err := p2pmessage.NewCreator(
logging.NoLog{},
prometheus.NewRegistry(),
compression.TypeZstd,
Expand All @@ -102,7 +102,7 @@ func main() {
log.Fatalf("failed to marshal SignatureRequest: %s\n", err)
}

appRequest, err := mesageBuilder.AppRequest(
appRequest, err := messageBuilder.AppRequest(
constants.PlatformChainID,
0,
time.Hour,
Expand Down