1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Consume gas in VmState::jump_to

This commit is contained in:
SpyCheese 2024-09-23 12:09:16 +03:00
parent e04965c400
commit 2cca7fddcc
2 changed files with 9 additions and 3 deletions

View file

@ -114,4 +114,5 @@ Operations for working with Merkle proofs, where cells can have non-zero level a
## Version 9
- Fix `RAWRESERVE` action with flag `4` (use original balance of the account) by explicitly setting `original_balance` to `balance - msg_balance_remaining`.
- Previously it did not work if storage fee was greater than the original balance.
- Previously it did not work if storage fee was greater than the original balance.
- Jumps to nested continuations of depth more than 8 consume 1 gas for eact subsequent continuation (this does not affect most of TVM code).