From b3d39843bcba7b8fd689dfdb454c8ce1d039e6a9 Mon Sep 17 00:00:00 2001 From: Aliaksandr Bahdanau Date: Mon, 25 Nov 2024 10:20:23 +0300 Subject: [PATCH] fix(docs): fix link --- docs/src/content/docs/book/security-best-practices.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/book/security-best-practices.mdx b/docs/src/content/docs/book/security-best-practices.mdx index 7c9cb5864..9a7c580e7 100644 --- a/docs/src/content/docs/book/security-best-practices.mdx +++ b/docs/src/content/docs/book/security-best-practices.mdx @@ -347,7 +347,7 @@ contract JettonDefaultWallet { ## Transaction and phases The computational phase executes the code of smart contracts and only then the actions are performed (sending messages, code modification, changing libraries, and others) and state of contract is updated. -That's mean if compute phase fails [registers](https://docs.ton.org/v3/documentation/tvm/tvm-overview#control-registers) `c4` (“persistent data”) and `c5` (“actions”) won't be updated. But it is possibly to manually save their state via [`commit(){:tact}`](ref/core-advanced/#commit). +That's mean if compute phase fails [registers](https://docs.ton.org/v3/documentation/tvm/tvm-overview#control-registers) `c4` (“persistent data”) and `c5` (“actions”) won't be updated. But it is possibly to manually save their state via [`commit(){:tact}`](/ref/core-advanced/#commit). ## Return gas excesses carefully