Skip to content

Commit

Permalink
cmd, internal: update copyright year to 2023 (#26382)
Browse files Browse the repository at this point in the history
* internal/flags: update copyright year to 2023

* cmd/geth: update copyright year to 2023
  • Loading branch information
sandakersmann committed Jan 3, 2023
1 parent 9d38466 commit dad9250
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/geth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func init() {
// Initialize the CLI app and start Geth
app.Action = geth
app.HideVersion = true // we have a command to print the version
app.Copyright = "Copyright 2013-2022 The go-ethereum Authors"
app.Copyright = "Copyright 2013-2023 The go-ethereum Authors"
app.Commands = []*cli.Command{
// See chaincmd.go:
initCommand,
Expand Down
2 changes: 1 addition & 1 deletion internal/flags/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func NewApp(usage string) *cli.App {
app.EnableBashCompletion = true
app.Version = params.VersionWithCommit(git.Commit, git.Date)
app.Usage = usage
app.Copyright = "Copyright 2013-2022 The go-ethereum Authors"
app.Copyright = "Copyright 2013-2023 The go-ethereum Authors"
app.Before = func(ctx *cli.Context) error {
MigrateGlobalFlags(ctx)
return nil
Expand Down

0 comments on commit dad9250

Please sign in to comment.