aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/test/revert_validation_test.ts
Commit message (Collapse)AuthorAgeFilesLines
* Fix linter errors in contract-wrappersAlex Browne2018-10-161-2/+0
|
* Use contractAddresses directly in revert_validation_test.tsAlex Browne2018-10-161-6/+4
|
* Appease linterAlex Browne2018-10-161-1/+1
|
* Add new runMigrationsOnce method to migrations. Update contract-wrappers to ↵Alex Browne2018-10-161-10/+11
| | | | use it.
* Fix linter errors in contract-wrappersAlex Browne2018-10-161-1/+1
|
* Remove artifacts from migrations package and update contract-wrappers ↵Alex Browne2018-10-161-16/+12
| | | | accordingly
* Handle revert with reason when decoding call resultJacob Evans2018-09-281-0/+122
We use in-process ganache which throws on an RPC error. This means all of our tests get a nice revert error thrown when testing against ganache. This is not possible with RPC providers and a revert with reason result is returned. Our callAsync doesn't handle this and attempts to decode the revert with reason error log as a successful log, which results in an error while decoding. This only works with our fork of ethers https://github.com/ethers-io/ethers.js/pull/188 and will need to be re-worked when updating to Ethers.js 4