electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit f381aee83549a456a47f2d2a001f7215023a3117
parent b69cb213335481aeb3d7d9363d4871159d427d51
Author: ThomasV <thomasv@electrum.org>
Date:   Sat,  7 Jan 2017 09:31:09 +0100

make payment requests never expire by default

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -712,7 +712,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.expires_combo = QComboBox() self.expires_combo.addItems(map(lambda x:x[0], expiration_values)) - self.expires_combo.setCurrentIndex(1) + self.expires_combo.setCurrentIndex(3) self.expires_combo.setFixedWidth(self.receive_amount_e.width()) msg = ' '.join([ _('Expiration date of your request.'),