@ton/blueprint 0.35.0 → 0.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.35.1] - 2025-06-13
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed Tolk counter template
|
|
13
|
+
|
|
8
14
|
## [0.35.0] - 2025-06-02
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -32,13 +32,14 @@ fun saveData(data: Storage) {
|
|
|
32
32
|
|
|
33
33
|
// onInternalMessage is the main entrypoint; it's called when a contract receives an internal message from other contracts
|
|
34
34
|
fun onInternalMessage(myBalance: int, msgValue: int, msgFull: cell, msgBody: slice) {
|
|
35
|
+
// manual message handling will be obsolete in Tolk v1.0
|
|
35
36
|
if (msgBody.isEnd()) { // ignore all empty messages
|
|
36
37
|
return;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
var cs = msgFull.beginParse();
|
|
40
41
|
val flags = cs.loadMessageFlags();
|
|
41
|
-
if (
|
|
42
|
+
if (flags & 1) { // ignore all bounced messages
|
|
42
43
|
return;
|
|
43
44
|
}
|
|
44
45
|
|