Skip to content
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

fix 9 header #810

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/develop/smart-contracts/security/things-to-focus.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Contracts in the blockchain can reside in separate shards, processed by other se

It is helpful to think through the roadmap of exit codes for the code flow (and have it documented) before starting programming your TON smart contract.

### 9. Func functions that have medhod_id identifiers have method IDs
### 9. Func functions that have method_id identifiers have method IDs

They can be either set explicitly `"method_id(5)"`, or implicitly by a func compiler. In this case, they can be found among methods declarations in the .fift assembly file. Two of them are predefined: one for receiving messages inside of blockchain `(0)`, commonly named `recv_internal`, and one for receiving messages from outside `(-1)`, `recv_external`.

Expand Down Expand Up @@ -94,4 +94,4 @@ There are two custom solutions for wallets (smart contracts, storing users money

Originally written by 0xguard

- [Original article](https://0xguard.com/things_to_focus_on_while_working_with_ton_blockchain)
- [Original article](https://0xguard.com/things_to_focus_on_while_working_with_ton_blockchain)