Nicolás Venturo
Nicolás Venturo
Apparently Rust also allows the above to be written as `impl ...`.
The error you get if you don't add the `where` clause in all the correct places can also be a bit confusing. It reads (assuming the code samples above): ```...
Is there an estimated timeline for this? I'd love to be able to setup compilation for multiple Solidity versions in OpenZeppelin without having to upgrade to truffle 5 (which would...
Our pages are now short enough that we don't get scrollbars anymore (except on the Contracts site). I do think preserving collapsed elements is helpful though.
Hmm, maybe something changed in Infura? I recall deploying on ropsten with no issues. Could you detail which method it is that is unsupported? Thanks!
That is positively bizarre, it looks like the offending line is ``` const adminAddress = web3.eth.accounts[1]; ```
Are there any plans to tackle this soon? :grin:
Hm, to be honest I had not considered the case of using `singletons` to deploy to sidechains. The requirement to have a non-zero `gasPrice` is valid however. I worry that...
This may be very useful, yes! A trick we sometimes do when calculating how a transaction affected balance, without taking into account gas, is to set `gasPrice: 0` for that...
That's very interesting, the recent BN releases shouldn't have altered that behavior. Could you share a simple snippet of your tests so we can reproduce the issue? Thanks!