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

core: updated the current year to 2024 #2836

Merged
merged 2 commits into from
Jan 29, 2024
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: no-commit-to-branch # Protect specific branches (default: main/master) from direct checkins

- repo: https://github.com/ObolNetwork/go-pre-commit-hooks
rev: v0.0.2
rev: v0.0.3
hooks:
- id: check-go-version
args: [ -v=go1.21 ] # Only check minor version locally
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Parameters
Licensor: Obol Labs, Inc.

Licensed Work: Charon, the Distributed Validator Client
The Licensed Work is © 2022-2023 Obol Labs, Inc.
The Licensed Work is © 2022-2024 Obol Labs, Inc.

Additional Use Grant: The use of the Licensed Work by the Licensee is limited
to one (1) Distributed Validator on a production network.
Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package app provides the top app-level abstraction and entrypoint for a charon DVC instance.
// The sub-packages also provide app-level functionality.
Expand Down
2 changes: 1 addition & 1 deletion app/app_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/disk.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/disk_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/errors/context.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package errors

Expand Down
2 changes: 1 addition & 1 deletion app/errors/context_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package errors_test

Expand Down
2 changes: 1 addition & 1 deletion app/errors/errors.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package errors provides errors with structured fields and stack traces.
// It is a drop-in replacement for stdlib errors and should be used as such throughout the app.
Expand Down
2 changes: 1 addition & 1 deletion app/errors/errors_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package errors_test

Expand Down
2 changes: 1 addition & 1 deletion app/errors/go113.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

//nolint:wrapcheck,revive
package errors
Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/eth2wrap.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package eth2wrap provides a wrapper for eth2http.Service adding prometheus metrics and error wrapping.
package eth2wrap
Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/eth2wrap_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 app/eth2wrap/eth2wrap_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap_test

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/genwrap/genwrap.go

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

2 changes: 1 addition & 1 deletion app/eth2wrap/httpwrap.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/lazy.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/success.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/synthproposer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/synthproposer_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap_test

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/valcache.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap

Expand Down
2 changes: 1 addition & 1 deletion app/eth2wrap/valcache_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package eth2wrap_test

Expand Down
2 changes: 1 addition & 1 deletion app/expbackoff/expbackoff.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package expbackoff implements exponential backoff. It was copied from google.golang.org/grpc.
package expbackoff
Expand Down
2 changes: 1 addition & 1 deletion app/expbackoff/expbackoff_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package expbackoff_test

Expand Down
2 changes: 1 addition & 1 deletion app/featureset/config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package featureset

Expand Down
2 changes: 1 addition & 1 deletion app/featureset/config_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package featureset_test

Expand Down
2 changes: 1 addition & 1 deletion app/featureset/featureset.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package featureset defines a set of global features and their rollout status.
package featureset
Expand Down
2 changes: 1 addition & 1 deletion app/featureset/featureset_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package featureset

Expand Down
2 changes: 1 addition & 1 deletion app/featureset/status_string.go

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

2 changes: 1 addition & 1 deletion app/forkjoin/forkjoin.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package forkjoin provides an API for "doing work
// concurrently (fork) and then waiting for the results (join)".
Expand Down
2 changes: 1 addition & 1 deletion app/forkjoin/forkjoin_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package forkjoin_test

Expand Down
2 changes: 1 addition & 1 deletion app/genssz/genssz.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Command genssz generates ssz hashing code for structs in given go package.
// Structs need to be tagged with `ssz:"<ssz-type>"` to be included.
Expand Down
2 changes: 1 addition & 1 deletion app/genssz/template.go

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

2 changes: 1 addition & 1 deletion app/genssz/testdata/example.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package testdata

Expand Down
2 changes: 1 addition & 1 deletion app/genssz/testdata/ssz_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 app/genssz/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package main

Expand Down
2 changes: 1 addition & 1 deletion app/health/checker.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package health provides health checks for the application.
package health
Expand Down
2 changes: 1 addition & 1 deletion app/health/checks.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package health

Expand Down
2 changes: 1 addition & 1 deletion app/health/checks_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package health

Expand Down
2 changes: 1 addition & 1 deletion app/health/metrics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package health

Expand Down
2 changes: 1 addition & 1 deletion app/health/reducers.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package health

Expand Down
2 changes: 1 addition & 1 deletion app/health/select.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package health

Expand Down
2 changes: 1 addition & 1 deletion app/k1util/k1util.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package k1util provides helper function for working with secp256k1 keys.
package k1util
Expand Down
2 changes: 1 addition & 1 deletion app/k1util/k1util_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package k1util_test

Expand Down
2 changes: 1 addition & 1 deletion app/lifecycle/hook.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package lifecycle

Expand Down
2 changes: 1 addition & 1 deletion app/lifecycle/manager.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package lifecycle provides a life cycle manager abstracting the starting and stopping
// of processes by registered start or stop hooks.
Expand Down
2 changes: 1 addition & 1 deletion app/lifecycle/manager_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package lifecycle_test

Expand Down
2 changes: 1 addition & 1 deletion app/lifecycle/order.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package lifecycle

Expand Down
2 changes: 1 addition & 1 deletion app/lifecycle/orderstart_string.go

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

2 changes: 1 addition & 1 deletion app/lifecycle/orderstop_string.go

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

2 changes: 1 addition & 1 deletion app/log/config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log

Expand Down
2 changes: 1 addition & 1 deletion app/log/config_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log

Expand Down
2 changes: 1 addition & 1 deletion app/log/filter.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log

Expand Down
2 changes: 1 addition & 1 deletion app/log/log.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package log provides global logging functions to be used throughout the charon app.
// It supports contextual logging via WithCtx and structured logging and structured errors
Expand Down
2 changes: 1 addition & 1 deletion app/log/log_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log_test

Expand Down
2 changes: 1 addition & 1 deletion app/log/loki/batch.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package loki

Expand Down
2 changes: 1 addition & 1 deletion app/log/loki/client.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

// Package loki provides a simple best-effort loki log ingestion client supporting batch sends.
// It is heavily based on https://github.com/grafana/loki/tree/main/clients/pkg/promtail/client.
Expand Down
2 changes: 1 addition & 1 deletion app/log/loki/client_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package loki_test

Expand Down
2 changes: 1 addition & 1 deletion app/log/metrics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log

Expand Down
2 changes: 1 addition & 1 deletion app/log/wrapper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package log

Expand Down
2 changes: 1 addition & 1 deletion app/metrics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/monitoringapi.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/monitoringapi_internal_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package app

Expand Down
2 changes: 1 addition & 1 deletion app/obolapi/api.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package obolapi

Expand Down
2 changes: 1 addition & 1 deletion app/obolapi/api_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2022-2023 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1
// Copyright © 2022-2024 Obol Labs Inc. Licensed under the terms of a Business Source License 1.1

package obolapi_test

Expand Down
Loading
Loading