Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
......
Browse files Browse the repository at this point in the history
  • Loading branch information
reneespinosa committed Jan 6, 2024
1 parent 98d1fda commit 1c7296c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/task2.fc
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,11 @@
}
(int llave, slice valor, int num) = diccionario.udict_get_min?(256);
while(num){
int us = valor~load_uint(32);
cell msg = begin_cell()
.store_uint(0x18, 6)
.store_uint(1 << 10, 11)
.store_uint(llave, 256)
.store_coins(us * msg_value / ts)
.store_coins(valor~load_uint(32) * msg_value / ts)
.store_uint(0, 1 + 4 + 4 + 64 + 32 + 1 + 1)
.end_cell();
(llave, valor, num) = diccionario.udict_get_next?(256, llave);
Expand Down

0 comments on commit 1c7296c

Please sign in to comment.