Skip to content

Commit

Permalink
Fix unloaded proposer removing transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 committed Feb 19, 2024
1 parent 0560d9d commit 88fc895
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion safe_cli/operators/safe_tx_service_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,11 @@ def remove_proposed_transaction(self, safe_tx_hash: bytes):
if not signer:
print_formatted_text(
HTML(
f"<ansired>The proposer with address: {safe_tx.proposer} wasn loaded</ansired>"
f"<ansired>The proposer with address: {safe_tx.proposer} was not loaded</ansired>"
)
)
return False

if isinstance(signer, LocalAccount):
signature = signer.signHash(message_hash).signature
else:
Expand Down

0 comments on commit 88fc895

Please sign in to comment.