TRN-609 Improve transact
error handling
#893
Merged
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.
Front-end developers often encountered a misleading error message
1010: Invalid Transaction: Transaction has a bad signature
when working thexrpl
pallet. This would usually be due to an unrelated problem, such as the sending account not having sufficient balance to pay for the extrinsic. Seeing the incorrect error message could be very confusing.The above error message is correlated with the error
InvalidTransaction::BadProof
. The runtime would mistakingly return this error because thexrpl
(anddoughnut
) pallet have additional extrinsic validation applied to their runtime calls, implemented via the SelfContainedCall trait that was returning the wrong value. The methodvalidate_self_contained
returns a typeOption<TransactionValidityError>
, where if the return value wasNone
, thevalidate
implementation for CheckedExtrinsics from evm frontier would default toInvalidTransaction::BadProof
https://github.com/polkadot-evm/frontier/blob/master/primitives/self-contained/src/checked_extrinsic.rs#L93-L95.This PR aims to ensure the correct
InvalidTransaction
variant is propagated when the runtime call is validated.Release Notes
Error Messages:
Changed:
doughtnut: Invalid transactions should be correct variant instead of catch-all
BadProof
xrpl: Invalid transactions should be correct variant instead of catch-all
BadProof