mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
reduce max number multisig keystores
This commit is contained in:
parent
b0877d94bf
commit
37c4ff4dd7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue