support loading v3 transactions in the transaction editor
This commit is contained in:
parent
e9108b85cd
commit
23a9db5fc6
@ -280,9 +280,9 @@ public class HeadersController extends TransactionFormController implements Init
|
||||
|
||||
updateTxId();
|
||||
|
||||
version.setValueFactory(new IntegerSpinner.ValueFactory(1, 2, (int)tx.getVersion()));
|
||||
version.setValueFactory(new IntegerSpinner.ValueFactory(1, 3, (int)tx.getVersion()));
|
||||
version.valueProperty().addListener((obs, oldValue, newValue) -> {
|
||||
if(newValue == null || newValue < 1 || newValue > 2) {
|
||||
if(newValue == null || newValue < 1 || newValue > 3) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user