1
0

Fix typos

This commit is contained in:
Dimitris Apostolou
2018-04-15 20:45:30 +03:00
committed by Johann Bauer
parent 5b2b59420f
commit 989c9c2b55
37 changed files with 57 additions and 57 deletions

View File

@@ -149,7 +149,7 @@ class TrezorClientBase(GuiMixin, PrintError):
def expand_path(n):
'''Convert bip32 path to list of uint32 integers with prime flags
0/-1/1' -> [0, 0x80000001, 0x80000001]'''
# This code is similar to code in trezorlib where it unforunately
# This code is similar to code in trezorlib where it unfortunately
# is not declared as a staticmethod. Our n has an extra element.
PRIME_DERIVATION_FLAG = 0x80000000
path = []

View File

@@ -467,7 +467,7 @@ class SettingsDialog(WindowModalDialog):
settings_glayout = QGridLayout()
# Settings tab - Label
label_msg = QLabel(_("Name this {}. If you have mutiple devices "
label_msg = QLabel(_("Name this {}. If you have multiple devices "
"their labels help distinguish them.")
.format(plugin.device))
label_msg.setWordWrap(True)

View File

@@ -479,7 +479,7 @@ class TrezorPlugin(HW_PluginBase):
o.script_pubkey = bfh(vout['scriptPubKey'])
return t
# This function is called from the trezor libraries (via tx_api)
# This function is called from the TREZOR libraries (via tx_api)
def get_tx(self, tx_hash):
tx = self.prev_tx[tx_hash]
return self.electrum_tx_to_txtype(tx)