Skip to content

Conversation

@xssnick
Copy link
Contributor

@xssnick xssnick commented May 12, 2025

No description provided.

Sumrachek and others added 30 commits June 20, 2025 20:42
…#1653)

* celldb: version 2

- thread safe cache
- parallel commit
- multiple optimizations
- support of key-value merge operations
- improved tests and benchmarks
- in-memory version won't read from key value after start - uses vector in-memory table now
- use rocksdb::WALRecoveryMode::kTolerateCorruptedTailRecords - do not silently ignore errors during recovery

* celldb: add test for load nonexisting cell, test thread safeness of CellUsageTree, fixes

* Cache validator sets for create_shard_state

* Permanent celldb, improve importing archive slices, new flags for validator-engine

* Fix persistent state lookup

* Tool for generating liteserver desc for global config

* Import proof for initial block

* Perf timer for archive import

* Do not recompute validator set in MasterchainStateQ::mc_reinit

This does not improve performance (as unpack_validator_set result is
cached regardless) but makes the code clearer.

* Remove debug logs

* Fix downloading initial proof

* Fix error processing in CellDbIn::store_block_state_permanent_bulk

* Improve some logs

---------

Co-authored-by: birydrad <>
Co-authored-by: Dan Klishch <[email protected]>
* not always gh mac runners have nproc utility

* deprecate Ubuntu 20.04

* fix linking issues of portable tonlibjson.dylib

* bind libgsl and libblas into portable binaries
…#1685)

* not always gh mac runners have nproc utility

* deprecate Ubuntu 20.04

* fix linking issues of portable tonlibjson.dylib

* add dht-ping-servers and dht-resolve utilities to artifacts

* test gh builds

* minor win fix

* minor win fix
…kchain#1725)

* Update build-macos-portable.sh

update macro names

* Update build-macos-portable.sh

Make config.sub executable

* Update build-macos-portable.sh

Let's use zero-autotools approach when compiling libsodium on mac

* Update build-macos-portable.sh

refactor libsodium directory
This allows express snake nesting like
struct A {
    next: Cell<A>?
}
Instead of generating PROCINLINE to Fift,
perform compile-time inlining when possible
In real-world code, it requires fewer stack permutations,
because slices are not constant
Lazy loading, partial loading, partial updating
See pipe-lazy-load-insertions.cpp for comments
EmelyanenkoK and others added 30 commits November 21, 2025 20:33
* upgrade abseil to August 2025, Patch 1

* add gh action to clear all gh actions cache

* add gh action to clear all gh actions cache

* migrate gh action macos-13 to macos-15 x86.

* need repo

* automatically add ""@codex review" comment to PRs

* add more permissions

* add more permissions to codex review job

* trigger automatic codex review only on specified gh users

* trigger automatic codex review when the review is submitted

* add more permissions to codex review job

* trigger automatic codex review only on specified gh users

* trigger automatic codex review when the review is submitted

* trigger automatic codex review when the review is submitted

* rework codex auto review

* rework codex auto review

* rework codex auto review for PRs from forks

* rework codex auto review for PRs from forks

* fix based on a review

* fix based on a review

* restore codex auto review without openai api key, remove handling of pull_request_review events

* adjust to work on fork PRs too

---------

Co-authored-by: neodix <[email protected]>
* Do not manually enumerate tests in each and every CI build script

* Refactor test expectation macros to output failing line in logs

Previously, logs first recorded a random source line and then message
contained the line where the expectation failed.

* Add non-asserting test expectation macros

These fail test instead of killing the process.

* Print test results in the nicer format by default

Let's reserve LOG(ERROR) for errors.

Unfortunately, we cannot use this everywhere as test runner is also used
in TonlibClient, where custom log redirections can be set up.
…er (ton-blockchain#1906)

* [tontester] Use 127.0.0.1 to bind nodes instead of 127.0.42.239

The later causes errors on MacOS.

* [tontester] Use correct tonlibjson filename on MacOS

* [tontester] Add TLRequest.parse_result

* [tontester] Replace pytonlib with a statically typed tonlibjson wrapper

Co-authored-by: Dan Klishch <[email protected]>

---------

Co-authored-by: yungwine <[email protected]>
* Fix constructing LoadedCell

* Remove unused VirtualizationParameters

* Fix cleanup of fast-sync member certificates in node config

* Fix checking cancellation in boc.h

* Add mc_block_id to collation stats
* make debug output part of vm_log too

* make debug output only to vm_log

* remove comments
* Refactor CMake tonlibjson declaration

This will allow us to do white-box testing of the library in the future.

* Add test that ensures installed tonlib can be imported and used

... at least on Linux and MacOS.
…-blockchain#1923)

We will need ActorTypeStatManager::get_class_name demangler from it in
the future.
* update blst to v0.3.15

* remove redundant submodule entry
…atibility (ton-blockchain#1929)

This commit resolves a compilation error that occurs when building TON
with GCC 11 or newer. The error was caused by ambiguous promise_type
declarations in Task and StartedTask structs.

Changes:
- Replace 'using promise_type = promise_type<T>' with fully-qualified
  'using promise_type = td::actor::promise_type<T>' at lines 295 and 367
  in tdactor/td/actor/coro_task.h

This fix enables successful compilation with modern GCC versions while
maintaining backward compatibility with Clang.

Tested with:
- GCC 11.4.0 on Ubuntu 22.04
- Clang 14.0.0

Fixes build errors on systems using default GCC 11+ compilers.
A Fift compilation error could occur in some cases when one
get method (id>65536) was called from another
…ckchain#1935)

* fetch libmicrohttpd from github instead of ftpmirror.gnu.org

* remove redundant snippet

* remove redundant snippet

* minor

* use libmicrohttpd repo out of ton-blockchain org
* Add ratelimiter for full node shard requests

* Fill in limits for some functions

* Fix linter errors

* Share limiter between shards

* Fix includes

* Add synchronization

* Some fixes

* Move configuration

* Fixes + formatting

* Fix

* FIx request groups
* Fix depth balance decompression

* [compression-depth-balance] Bug fix and refactor depth balance decompression

* [compression-depth-balance] Refactor balance parsing, change CMakeLists to avoid cyclic dependencies with block-auto.h

* [compression-depth-balance] Optimize decompression

* [compression-depth-balance] Add benchmark logs for testing on devnet

* Add benchmark logs to lefotver methods

* Improve benchmark logs

* [broadcast-benchmark-logs] Create comprehensive logs for broadcast benchmark. Other refactoring.

* [compression-depth-balance] Fix formatting
…ts (ton-blockchain#1954)

Everyone should be using v2 versions of these requests.
…ockchain#1955)

* Simplify clang-format by actually basing it on Google style

There is no benefit in not using `BasedOnStyle` rule.

The new config differs from the old one in a few minor rules that do not
introduce any formatting changes.

* Ask clang-format to insert new line at EOF

* Use west const everywhere
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.