-
Notifications
You must be signed in to change notification settings - Fork 829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Sei addresses in transfer precompiles #2021
Support Sei addresses in transfer precompiles #2021
Conversation
… into feature/ct_module
@@ -320,7 +335,7 @@ func (p PrecompileExecutor) getAuditorsFromArg(ctx sdk.Context, arg interface{}) | |||
|
|||
auditors := make([]*cttypes.Auditor, 0) | |||
for _, auditor := range evmAuditors { | |||
auditorAddr, _, err := p.accAddressesFromArg(ctx, auditor.AuditorAddress) | |||
auditorAddr, err := p.getValidSeiAddressFromString(ctx, auditor.AuditorAddress) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was probably in the scope of the previous PR, but do we need to do any validation on the contents of the Auditor objects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry can ignore: Just expanded and see that validations are performed below
Describe your changes and provide context
Support Sei addresses in transfer precompiles
Testing performed to validate your change