Skip to content

Commit

Permalink
docs: an important note
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Nov 30, 2023
1 parent 234f03b commit 9098562
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion eip712/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ def __getitem__(self, key: str) -> Any:

@property
def signable_message(self) -> SignableMessage:
"""The current message as a :class:`SignableMessage` named tuple instance."""
"""
The current message as a :class:`SignableMessage` named tuple instance.
**NOTE**: The 0x19 prefix is NOT included.
"""
return SignableMessage(
HexBytes(1),
HexBytes(hash_domain(self._domain_)),
Expand Down

0 comments on commit 9098562

Please sign in to comment.