Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions ecosystem/blueprint/coverage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,15 @@ Note that when code of other contracts is stored directly in the code of contrac

To mitigate this effect in coverage estimation, add a circular dependency. For example, import a file with the following content.

```tact
```tact title="Tact"
contract A {
receive() {
let x = initOf B();
drop2(x);
}
}

contract B(
) {
contract B() {
receive() {
let x = initOf A();
drop2(x);
Expand Down
2 changes: 1 addition & 1 deletion ton/proofs/basic-proof-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const patchedShardState = rebuild(newShardState, path, accountState) // And repl

Another interesting point is how we access the hash of the last known `ShardBlock`.

```tact
```tact title="Tact"
inline fun findShardInBinTree(root: Cell, address: Address, shardBitLen: Int): ShardDescr {
let curCs = root.beginParse();
// It's std address, but we parse it as VarAddress to get hash part as Slice, not as Int
Expand Down
Loading