Skip to content

Commit

Permalink
Small fixes to "multi exec servers"
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasmaPower committed May 2, 2024
1 parent b4cc111 commit 4ee9d7a
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 @@ -276,7 +276,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
ENTRYPOINT [ "/usr/local/bin/split-val-entry.sh" ]
USER user
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 @@ -398,7 +398,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 4ee9d7a

Please sign in to comment.