You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the request-validator-access command does not perform the same pre-checks as prepare-validator-access. As a result, if any required argument or configuration is incorrect, the transaction is still sent on-chain and ends up being rejected.
We should:
Add the same validation logic from prepare-validator-access into request-validator-access, so that incorrect inputs stop execution before sending the transaction.
Introduce a new -f (force) flag that allows the transaction to be sent anyway. In this mode, the errors will be shown only as warnings, and the transaction will proceed regardless.
Currently, the
request-validator-accesscommand does not perform the same pre-checks asprepare-validator-access. As a result, if any required argument or configuration is incorrect, the transaction is still sent on-chain and ends up being rejected.We should:
Benefits:
Acceptance Criteria:
request-validator-accessruns all the same validation checks as prepare-validator-access.