mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 00:27:00 +00:00
reduce max number multisig keystores
This commit is contained in:
@@ -149,7 +149,7 @@ public class SettingsController extends WalletFormController implements Initiali
|
||||
EventManager.get().post(new SettingsChangedEvent(walletForm.getWallet(), SettingsChangedEvent.Type.MUTLISIG_THRESHOLD));
|
||||
});
|
||||
multisigControl.highValueProperty().addListener((observable, oldValue, newValue) -> {
|
||||
if(newValue.doubleValue() == multisigControl.getMax() && newValue.doubleValue() <= 49.0) {
|
||||
if(newValue.doubleValue() == multisigControl.getMax() && newValue.doubleValue() <= 19.0) {
|
||||
multisigControl.setMax(newValue.doubleValue() + 1.0);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user