Skip to content

Commit

Permalink
bugfix: Sign messages with ":" character
Browse files Browse the repository at this point in the history
  • Loading branch information
odudex committed Aug 5, 2024
1 parent 9e1b2b4 commit 3eba4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/krux/pages/home_pages/sign_message_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def sign_at_address(self, data):
if len(data_blocks) >= 3:
derivation = data_blocks[1].decode()
message = b" ".join(data_blocks[2:])
message = message.split(b":")
message = message.split(b":", 1)
if len(message) >= 2 and message[0] == b"ascii":
message = b" ".join(message[1:])
derivation = bip32.parse_path(derivation)
Expand Down

0 comments on commit 3eba4e4

Please sign in to comment.