You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
279 B
10 lines
279 B
2 years ago
|
;; moved to the separate file to keep hex of the previous codes unchanged
|
||
|
|
||
|
const op::provide_wallet_address = 0x2c76b973;
|
||
|
const op::take_wallet_address = 0xd1735400;
|
||
|
|
||
|
int is_resolvable?(slice addr) inline {
|
||
|
(int wc, _) = parse_std_addr(addr);
|
||
|
|
||
|
return wc == workchain();
|
||
|
}
|