Anastasiia Kondaurova
Anastasiia Kondaurova
``` rldp-http-proxy/rldp-http-proxy -a :3333 -C ton-global-lite-client.config.json ```
Often face the problem which mysteriously disappers after couple of hours : ` [ 2][t 0][1570796400.506420135][SocketFd.cpp:480][!outconn] [PosixError : Connection refused : 61 : Read from [fd:6] has failed] [ 1][t...
Should allow multiple return points in the function. Ligo doesn't have an appropriate mechanism. Thus some proposal is needed
example: ``` pragma solidity ^0.4.16; contract BytesTest { function test10(bytes20 b0) public { bytes1 b6 = b0[1]; } } ```
``` uint256 g = gasleft(); ```
Ligo has `map`/`big_map` that can be used instead of Solidity `mapping`. `map` is adjusted for storing a small amount of records meanwhile `big_map` makes cheaper storing big amount of data....
Solidity doesn't check names convention but Ligo does. Thus some issues between functions and variables can appear.
Most of the variables in solidity are expected to be mutable. So `const` in current compiler implementation should be replaced with `var`.