Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/apps/wallets/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ async def confirm_transaction(self, wallets, meta, show_screen):
Returns dict with options to pass to sign_psbtview function.
"""

# ask the user if he wants to sign with custom sighashes
# ask the user if they want to sign with custom sighashes
sighash = await self.confirm_sighashes(meta, show_screen)
if sighash == False:
return
Expand Down Expand Up @@ -406,7 +406,7 @@ async def confirm_sighashes(self, meta, show_screen):
if not used_custom_sighashes:
return None

# ask the user if he wants to sign in case of non-default sighashes
# ask the user if they want to sign in case of non-default sighashes
custom_sighashes = [
("Input %d: %s" % (i, inp.get("sighash", sighash_name)))
for (i, inp) in enumerate(meta["inputs"])
Expand Down
2 changes: 1 addition & 1 deletion src/hosts/usb.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def read_to_file(self):
# if not - create new file on the ramdisk
if self.f is None:
self.f = open(self.path + "/data", "wb")
# check if we dont have EOL in the data
# check if we don't have EOL in the data
if b"\n" not in res and b"\r" not in res:
self.f.write(res)
return
Expand Down
Loading