Niran Babalola

Results 3 comments of Niran Babalola

`uint` and `int` are aliases for `uint256` and `int256`. `byte` is an alias for `bytes1`. https://solidity.readthedocs.org/en/latest/types.html

`uint` failed for me here if I recall correctly: https://github.com/axic/ethereumjs-abi/blob/master/lib/index.js#L78 It tries to parse the size, but there isn't one.

This seems to be by design, and I've modified my code to work around it, but it'd be nice if there were a way to turn it off so I...