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

[FunC] Fixed some impure specifiers in stdlib.fc

This commit is contained in:
Aleksandr Kirsanov 2024-05-03 11:33:25 +03:00
parent f217a7d312
commit a3e9e03019
No known key found for this signature in database
GPG key ID: B758BBAA01FFB3D3
17 changed files with 62 additions and 62 deletions

View file

@ -53,9 +53,9 @@ int check_data_signature(slice data, slice signature, int public_key) asm "CHKSI
cell get_data() asm "c4 PUSH";
() set_data(cell c) impure asm "c4 POP";
cont get_c3() impure asm "c3 PUSH";
cont get_c3() asm "c3 PUSH";
() set_c3(cont c) impure asm "c3 POP";
cont bless(slice s) impure asm "BLESS";
cont bless(slice s) asm "BLESS";
() accept_message() impure asm "ACCEPT";
() set_gas_limit(int limit) impure asm "SETGASLIMIT";
@ -202,7 +202,7 @@ int cell_null?(cell c) asm "ISNULL";
int random() impure asm "RANDU256";
int rand(int range) impure asm "RAND";
int get_seed() impure asm "RANDSEED";
int get_seed() asm "RANDSEED";
int set_seed() impure asm "SETRAND";
() randomize(int x) impure asm "ADDRAND";
() randomize_lt() impure asm "LTIME" "ADDRAND";