Skip to content

Commit 4cfe1d1

Browse files
authored
Merge pull request #961 from ton-blockchain/testnet
Merge developer branch
2 parents 8acf37c + c073560 commit 4cfe1d1

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

Changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2024.04 Update
2+
3+
1. Emulator: Single call optimized runGetMethod added
4+
2. Tonlib: a series of proof improvements, also breaking Change in `liteServer.getAllShardsInfo` method (see below)
5+
3. DB: usage statistics now collected, outdated persistent states are not serialized
6+
4. LS: fast `getOutMsgQueueSizes` added, preliminary support of non-final block requests
7+
5. Network: lz4 compression of block candidates (disabled by default).
8+
6. Overlays: add custom overlays
9+
7. Transaction Executor: fixed issue with due_payment collection
10+
11+
* `liteServer.getAllShardsInfo` method was updated for better efficiency. Previously, field proof contained BoC with two roots: one for BlockState from block's root and another for ShardHashes from BlockState. Now, it returns a single-root proof BoC, specifically the merkle proof of ShardHashes directly from the block's root, streamlining data access and integrity. Checking of the proof requires to check that ShardHashes in the `data` correspond to ShardHashes from the block.
12+
13+
Besides the work of the core team, this update is based on the efforts of @akifoq (due_payment issue).
14+
115
## 2024.03 Update
216

317
1. Preparatory (not enabled yet) code for pre-compiled smart-contract.

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:22.04 as builder
22
RUN apt-get update && \
3-
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git ninja-build libsecp256k1-dev libsodium-dev libmicrohttpd-dev pkg-config autoconf automake libtool && \
3+
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git ninja-build libsecp256k1-dev libsodium-dev libmicrohttpd-dev liblz4-dev pkg-config autoconf automake libtool && \
44
rm -rf /var/lib/apt/lists/*
55
ENV CC clang
66
ENV CXX clang++
@@ -19,7 +19,7 @@ RUN mkdir build && \
1919

2020
FROM ubuntu:22.04
2121
RUN apt-get update && \
22-
apt-get install -y wget libatomic1 openssl libsecp256k1-dev libsodium-dev libmicrohttpd-dev && \
22+
apt-get install -y wget libatomic1 openssl libsecp256k1-dev libsodium-dev libmicrohttpd-dev liblz4-dev && \
2323
rm -rf /var/lib/apt/lists/*
2424

2525
RUN mkdir -p /var/ton-work/db && \
@@ -36,4 +36,4 @@ WORKDIR /var/ton-work/db
3636
COPY ./docker/init.sh ./docker/control.template ./
3737
RUN chmod +x init.sh
3838

39-
ENTRYPOINT ["/var/ton-work/db/init.sh"]
39+
ENTRYPOINT ["/var/ton-work/db/init.sh"]

recent_changelog.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
3. DB: usage statistics now collected, outdated persistent states are not serialized
66
4. LS: fast `getOutMsgQueueSizes` added, preliminary support of non-final block requests
77
5. Network: lz4 compression of block candidates (disabled by default).
8-
9-
10-
11-
---
8+
6. Overlays: add custom overlays
9+
7. Transaction Executor: fixed issue with due_payment collection
1210

1311
* `liteServer.getAllShardsInfo` method was updated for better efficiency. Previously, field proof contained BoC with two roots: one for BlockState from block's root and another for ShardHashes from BlockState. Now, it returns a single-root proof BoC, specifically the merkle proof of ShardHashes directly from the block's root, streamlining data access and integrity. Checking of the proof requires to check that ShardHashes in the `data` correspond to ShardHashes from the block.
1412

15-
13+
Besides the work of the core team, this update is based on the efforts of @akifoq (due_payment issue).

0 commit comments

Comments
 (0)