I am trying to update contract storage such way:
set_data(
begin_cell()
.store_uint(public_key, 256)
.store_uint(execution_time, 32)
.store_slice(receiver)
.store_uint(seqno, 32)
.end_cell()
);
But after this update tests shows that seqno was not changed... What I am doing wrong? Do we have some kind of best practices for updating data?
Dec 31, 2023, 12:28 PM
I figured out. Mistake with with impure. It must be used for function...
Dec 31, 2023, 12:34 PM