disintar / toncli

TON Command Line Interface - easy smart contract manipulation
https://disintar.io/
Apache License 2.0
166 stars 34 forks source link

Asm.fif update needed. #61

Closed Trinketer22 closed 2 years ago

Trinketer22 commented 2 years ago

Proper fix for all PROCINLINE issues like #56 and #55

Thing is that PROCINLINE is simply not defined at currently supplied Asm.fif

Replacing it with SpyCheese current Asm.fif fixes it. As a proof try to compile this:

() recv_internal() {
}

( int ) hello () inline {
    return 1337;
}

toncli build toncli run build/contract.fif

Unfortunately way proposed in #56 only helps with very specific use case instead of fixing core of the issue.

tvorogme commented 2 years ago

Tnks! :+1: