Florian Antony

Results 7 comments of Florian Antony

Thank you @esocode for reporting this issue. Currently there is the option to configure your own compiler binaries via: _Window -> Preference -> Solidity -> Compiler -> Path to solc_...

From Solidity [changelog](https://github.com/ethereum/solidity/blob/develop/Changelog.md) > Change every .call() to a .call("") and every .call(signature, a, b, c) to use .call(abi.encodeWithSignature(signature, a, b, c)) (the last one only works for value types)....

0.5.0 Preparation checklist. All checkt items are either implemented or irrelevant: **Language changes:** - [x] General: Disallow var keyword. - [x] General: Disallow the throw statement. This was already the...

The solidity documentation contains an [example](https://solidity.readthedocs.io/en/v0.4.24/common-patterns.html#state-machine) that uses modifiers to implement state transition logic. For the minimalistic example given this makes sense, but i am not sure if the statemachiene...

Here is an simple example of the current state: ![simplesctexample](https://user-images.githubusercontent.com/9134302/45158824-7b5b2c80-b1e5-11e8-9678-8434330def1d.PNG) This will currently (beta not ready to work with) lead to following code: ``` pragma solidity ^0.4.18; contract SimpleExample {...

This looks reasonable to me. I am wondering how to implement guads when sticking to this pattern. I could imagine to just negate the guard condition and throw an exception...