-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Tun #1666
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
Open
xssnick
wants to merge
724
commits into
ton-blockchain:testnet-tunnel
Choose a base branch
from
xssnick:tun
base: testnet-tunnel
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Tun #1666
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…#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
Merge Tolk to testnet
Co-authored-by: SpyCheese <[email protected]>
Storage stat cache (ton-blockchain#1724)
…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
Merge developer branch
Increase timeouts in ArchiveImporterLocal
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
* 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]>
Add rules for review by Codex on PRs
* 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.
No behavior change.
…-blockchain#1923) We will need ActorTypeStatManager::get_class_name demangler from it in the future.
This obviously only works under rr.
…wser (ton-blockchain#1933) Co-authored-by: Danil Ovchinnikov <[email protected]>
* 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
…kchain#1937) They are unused in AcceptBlockQuery. Co-authored-by: SpyCheese <[email protected]>
Broadcast multiple messages to one wallet
…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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.