This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
[contract-wrappers] Test revert with reason when decoding call result #1090
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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. Resulting in a
invalid data for function output
error, usually ontakerFeePaid
which is confusing to debug.Description
This only works with our fork of ethers ethers-io/ethers.js#188 and will need to be re-worked when updating to Ethers.js 4.
We don't use the decode method directly, but the Interface parse function. This decodes but catches and wraps the error
This is a little awkward to test as we use
vmErrorsOnRPCResponse = true
by default so this would always pass unlessvmErrorsOnRPCResponse = false
. Created a PR to update DefinitelyTyped to remove theany
.@LogvinovLeon's PR ended up merging in checking for revert reasons, this PR now just ensures we have a test against this.
Testing instructions
Needed to create a ganache provider which has
vmErrorsOnRPCResponse = false
and thus the contracts need to be redeployed in this in-memory provider.Types of changes
Checklist:
[WIP]
if necessary.[sol-cov] Fixed bug
.