refactor(pkg/trie/triedb): introduce HashDB
interface and integrate into TrieDB
with added iterators
#7994
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Copyright check | |
on: | |
pull_request: | |
# Commented paths to avoid skipping required workflow | |
# See https://github.community/t/feature-request-conditional-required-checks/16761 | |
# paths: | |
# - .github/workflows/copyright.yml | |
# - "**/*.go" | |
# - "**/*.proto" | |
jobs: | |
copyright-check: | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
all_but_latest: true | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.2" | |
stable: true | |
check-latest: true | |
- run: make license | |
- run: git diff --exit-code |