Merge pull request #3602 from SomberNight/android_rbf_default_on

Android: make RBF on by default
This commit is contained in:
ThomasV 2017-12-31 15:51:47 +01:00 committed by GitHub
commit 5db7363cf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class ElectrumWindow(App):
self.daemon = self.gui_object.daemon
self.fx = self.daemon.fx
self.use_rbf = config.get('use_rbf', False)
self.use_rbf = config.get('use_rbf', True)
self.use_change = config.get('use_change', True)
self.use_unconfirmed = not config.get('confirmed_only', False)