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

Fix #2035 #2037

Merged
merged 5 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,438 changes: 4 additions & 2,434 deletions lib/src/trie/proof_decode.rs

Large diffs are not rendered by default.

Binary file added lib/src/trie/proof_decode/issue_2035_proof
Binary file not shown.
2,393 changes: 2,393 additions & 0 deletions lib/src/trie/proof_decode/tests.rs

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions wasm-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,10 @@

## Unreleased

### Fixed

- Fix smoldot sometimes considering some Merkle proofs as incomplete when storage nodes are being enumerated by a runtime call, and that a branch node immediately follows a storage node in lexicographic order. ([#2037](https://github.com/smol-dot/smoldot/pull/2037))

## 2.0.31 - 2024-11-08

### Fixed

Unchanged files with check annotations Beta

FROM rust:1 AS builder
LABEL maintainer "Pierre Krieger <pierre.krieger1708@gmail.com>"

Check warning on line 2 in full-node/Dockerfile

GitHub Actions / build-push-docker-image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
COPY ./.. /build
WORKDIR /build
FROM alpine:latest
LABEL maintainer "Pierre Krieger <pierre.krieger1708@gmail.com>"

Check warning on line 13 in full-node/Dockerfile

GitHub Actions / build-push-docker-image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/full-node /usr/local/bin
EXPOSE 30333