1
0

Merge pull request #10399 from f321x/qt_sort_cosigners

qt: WalletInfoDialog: sort keystores by root fingerprint
This commit is contained in:
ThomasV
2026-01-22 10:35:04 +01:00
committed by GitHub

View File

@@ -112,7 +112,7 @@ class WalletInfoDialog(WindowModalDialog):
labels_clayout = None
if wallet.is_deterministic():
keystores = wallet.get_keystores()
keystores = sorted(wallet.get_keystores(), key=lambda _ks: _ks.get_root_fingerprint() or '')
self.keystore_tabs = QTabWidget()