Fix bug with not supporting to restore seed words if current wallet files creation date is not matching original date

This commit is contained in:
Manfred Karrer 2016-11-02 22:48:04 +01:00
parent 01dcc4f2dc
commit c1970a88a6

View File

@ -137,9 +137,7 @@ public class SeedWordsView extends ActivatableView<GridPane, Void> {
restoreDatePicker.getStyleClass().add("validation_error");
};
dateChangeListener = (observable, oldValue, newValue) -> {
dateValid.set(walletCreationDate.equals(newValue));
};
dateChangeListener = (observable, oldValue, newValue) -> dateValid.set(true);
}
@Override