From 6bf91b8ae2b10ffaa16f0573776963e929420aa3 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 15 Jan 2016 15:25:01 +0900 Subject: [PATCH] Update comments and tooltips. --- gui/qt/main_window.py | 2 +- lib/coinchooser.py | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 008752557..5a7b8165c 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2756,7 +2756,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): multiple_change = self.wallet.multiple_change multiple_cb = QCheckBox(_('Multiple')) multiple_cb.setEnabled(self.wallet.use_change) - multiple_cb.setToolTip(_('If appropriate use up to 3 change addresses.')) + multiple_cb.setToolTip(_('If appropriate use up to 3 change addresses.\nThis might raise the transaction fee slightly.')) multiple_cb.setChecked(multiple_change) multiple_cb.stateChanged.connect(on_multiple) tx_widgets.append((usechange_cb, multiple_cb)) diff --git a/lib/coinchooser.py b/lib/coinchooser.py index 226872222..12b9a9d40 100644 --- a/lib/coinchooser.py +++ b/lib/coinchooser.py @@ -228,12 +228,8 @@ class CoinChooserPrivacy(CoinChooserRandom): reduce blockchain UTXO bloat, and reduce future privacy loss that would come from reusing that address' remaining UTXOs. Second, it penalizes change that is quite different to the sent amount. - Third, it penalizes change that is too big. Fourth, it breaks - large change up into amounts comparable to the spent amount. - Finally, change is rounded to similar precision to sent amounts. - Extra change outputs and rounding might raise the transaction fee - slightly. Transaction priority might be less than if older coins - were chosen.''' + Third, it penalizes change that is too big. Transaction priority + might be less than if older coins were chosen.''' def keys(self, coins): return [coin['address'] for coin in coins]