Fix typos
This commit is contained in:
committed by
Johann Bauer
parent
5b2b59420f
commit
989c9c2b55
@@ -149,7 +149,7 @@ class Plugin(TrustedCoinPlugin):
|
||||
vbox.addLayout(hbox)
|
||||
vbox.addStretch(10)
|
||||
|
||||
msg = _('TrustedCoin charges a small fee to co-sign transactions. The fee depends on how many prepaid transactions you buy. An extra output is added to your transaction everytime you run out of prepaid transactions.') + '<br/>'
|
||||
msg = _('TrustedCoin charges a small fee to co-sign transactions. The fee depends on how many prepaid transactions you buy. An extra output is added to your transaction every time you run out of prepaid transactions.') + '<br/>'
|
||||
label = QLabel(msg)
|
||||
label.setWordWrap(1)
|
||||
vbox.addWidget(label)
|
||||
@@ -258,7 +258,7 @@ class Plugin(TrustedCoinPlugin):
|
||||
msg = _('Then, enter your Google Authenticator code:')
|
||||
else:
|
||||
label = QLabel(
|
||||
"This wallet is already registered with Trustedcoin. "
|
||||
"This wallet is already registered with TrustedCoin. "
|
||||
"To finalize wallet creation, please enter your Google Authenticator Code. "
|
||||
)
|
||||
label.setWordWrap(1)
|
||||
|
||||
@@ -176,7 +176,7 @@ class TrustedCoinCosignerClient(object):
|
||||
|
||||
def transfer_credit(self, id, recipient, otp, signature_callback):
|
||||
"""
|
||||
Tranfer a cosigner's credits to another cosigner.
|
||||
Transfer a cosigner's credits to another cosigner.
|
||||
:param id: the id of the sending cosigner
|
||||
:param recipient: the id of the recipient cosigner
|
||||
:param otp: the one time password (of the sender)
|
||||
@@ -250,7 +250,7 @@ class Wallet_2fa(Multisig_Wallet):
|
||||
try:
|
||||
tx = mk_tx(outputs + [fee_output])
|
||||
except NotEnoughFunds:
|
||||
# trustedcoin won't charge if the total inputs is
|
||||
# TrustedCoin won't charge if the total inputs is
|
||||
# lower than their fee
|
||||
tx = mk_tx(outputs)
|
||||
if tx.input_value() >= fee:
|
||||
|
||||
Reference in New Issue
Block a user