fix(lib/trie): use MustBeHashed
for V1 trie nodes with larger storage values
#9646
Workflow file for this run
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
on: | |
pull_request: | |
# Commented paths to avoid skipping required workflow | |
# See https://git.luolix.topmunity/t/feature-request-conditional-required-checks/16761 | |
# paths: | |
# - .github/workflows/docker-grandpa.yml | |
# - "**/*.go" | |
# - "chain/**" | |
# - "cmd/**" | |
# - "dot/**" | |
# - "internal/**" | |
# - "lib/**" | |
# - "pkg/**" | |
# - "tests/stress/**" | |
# - go.mod | |
# - go.sum | |
name: docker-grandpa | |
jobs: | |
docker-grandpa-tests: | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
env: | |
DOCKER_BUILDKIT: "1" | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
with: | |
all_but_latest: true | |
- uses: docker/build-push-action@v5 | |
with: | |
load: true | |
target: builder | |
tags: chainsafe/gossamer:test | |
- name: Run grandpa | |
run: | | |
docker run chainsafe/gossamer:test sh -c "make it-grandpa" |