-
Notifications
You must be signed in to change notification settings - Fork 81
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
Update tx service delegate methods #427
Conversation
A new release of safe-eth-py is needed as the method that calculates the delegate signature in the current version is incorrect. Anyway, the task work in safe-cli would be ready. |
Co-authored-by: Moisés <7888669+moisses89@users.noreply.github.com>
Co-authored-by: Moisés <7888669+moisses89@users.noreply.github.com>
expected_hash = safe_operator.safe_tx_service.create_delegate_message_hash( | ||
delegate_address | ||
) | ||
expected_signature_signed = signer.signHash(expected_hash) |
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.
expected_signature_signed = signer.signHash(expected_hash) | |
expected_signature = signer.signHash(expected_hash) |
Looks like a bit redundant signature is supposed to be signed :)
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.
Yes, you are right. Updated b8f86ad
Added a blocked label to wait for a new version of safe-eth-py with the signature EIP712 fixed |
Closes #425