Consensys/python-solidity-parser

The parser doesn't support receive / fallback functions

eldadp100 opened this issue · 1 comments

Because there is no 'function' prefix the parser fails whenever there is a fallback / recieve exists in the code. For example,

fallback() external payable {}

FAILS

while function fallback() external payable {}

PASS

Thanks

should be fixed with #19. would appreciate it if you could provide feedback on whether this version fixes this issue. Thanks!