Skip to content

Commit

Permalink
Merge branch 'small-fixes-redis-validation' of github.com:OffchainLab…
Browse files Browse the repository at this point in the history
…s/nitro into small-fixes-redis-validation
  • Loading branch information
anodar committed May 14, 2024
2 parents 9cb4ced + 8eee533 commit 29e82e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ USER root

RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y xxd netcat-traditional
apt-get install -y xxd netcat-traditional && \
rm -rf /var/lib/apt/lists/* /usr/share/doc/* /var/cache/ldconfig/aux-cache /usr/lib/python3.9/__pycache__/ /usr/lib/python3.9/*/__pycache__/ /var/log/*
COPY scripts/split-val-entry.sh /usr/local/bin
COPY --from=nitro-legacy /home/user/target/machines /home/user/nitro-legacy/machines
RUN rm -rf /workspace/target/legacy-machines/latest
Expand Down
2 changes: 1 addition & 1 deletion staker/stateless_block_validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func (v *StatelessBlockValidator) ValidateResult(
}
}
if run == nil {
return false, nil, fmt.Errorf("validation woth WasmModuleRoot %v not supported by node", moduleRoot)
return false, nil, fmt.Errorf("validation with WasmModuleRoot %v not supported by node", moduleRoot)
}
defer run.Cancel()
gsEnd, err := run.Await(ctx)
Expand Down

0 comments on commit 29e82e3

Please sign in to comment.