Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Jun 5, 2024
1 parent 1274ba0 commit 5c8cf1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnosis/safe/safe_tx.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,10 @@ def sign(self, private_key: str) -> bytes:

# Insert signature sorted
if account.address not in self.signers:
new_tx_signatures = SafeSignature.parse_signature(
unsorted_signatures = SafeSignature.parse_signature(
self.signatures + signature, self.safe_tx_hash
)
self.signatures = SafeSignature.export_signatures(new_tx_signatures)
self.signatures = SafeSignature.export_signatures(unsorted_signatures)

return signature

Expand Down

0 comments on commit 5c8cf1e

Please sign in to comment.