Skip to content

Commit

Permalink
fix: add missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
z80dev committed Aug 22, 2023
1 parent ad20e65 commit c9d9e12
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ape_test/accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def sign_message(self, msg: Any, **signer_options) -> Optional[MessageSignature]
r=to_bytes(signed_msg.r),
s=to_bytes(signed_msg.s),
)
return None

def sign_transaction(self, txn: TransactionAPI, **kwargs) -> Optional[TransactionAPI]:
# Signs anything that's given to it
Expand Down

0 comments on commit c9d9e12

Please sign in to comment.