@ -142,7 +142,7 @@ class Plugin(TrustedCoinPlugin):
vbox.addLayout(hbox)
vbox.addLayout(hbox)
vbox.addStretch(10)
vbox.addStretch(10)
msg=_('TrustedCoin charges a fee per co-signed transaction. You may pay on each transaction (an extra output will be added to your transaction), or you may purchase prepaid transaction using this dialog.')+'<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 everytime you run out of prepaid transactions.')+'<br/>'
label=QLabel(msg)
label=QLabel(msg)
label.setWordWrap(1)
label.setWordWrap(1)
vbox.addWidget(label)
vbox.addWidget(label)
@ -152,35 +152,21 @@ class Plugin(TrustedCoinPlugin):
vbox.addLayout(grid)
vbox.addLayout(grid)
price_per_tx=wallet.price_per_tx
price_per_tx=wallet.price_per_tx
v=price_per_tx.get(1)
n_prepay=wallet.num_prepay(self.config)
grid.addWidget(QLabel(_("Price per transaction (not prepaid):")),0,0)