Skip to content

Commit

Permalink
test: fix export_private_key new path
Browse files Browse the repository at this point in the history
  • Loading branch information
keiff3r committed Dec 9, 2024
1 parent 8eca4b2 commit d539f53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/application_client/boilerplate_command_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@ def export_private_key(
data += idp_index.to_bytes(4, byteorder="big")
else:
data += bytes.fromhex("00")
data += identity_index.to_bytes(4, byteorder="big")

data += identity_index.to_bytes(4, byteorder="big")
print("km------------data", data.hex())
with self.backend.exchange_async(
cla=CLA,
Expand Down

0 comments on commit d539f53

Please sign in to comment.