We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9108b8 commit 23a9db5Copy full SHA for 23a9db5
src/main/java/com/sparrowwallet/sparrow/transaction/HeadersController.java
@@ -280,9 +280,9 @@ private void initializeView() {
280
281
updateTxId();
282
283
- version.setValueFactory(new IntegerSpinner.ValueFactory(1, 2, (int)tx.getVersion()));
+ version.setValueFactory(new IntegerSpinner.ValueFactory(1, 3, (int)tx.getVersion()));
284
version.valueProperty().addListener((obs, oldValue, newValue) -> {
285
- if(newValue == null || newValue < 1 || newValue > 2) {
+ if(newValue == null || newValue < 1 || newValue > 3) {
286
return;
287
}
288
0 commit comments