update confirmation status for opened unconfirmed wallet txes when mined

This commit is contained in:
Craig Raw 2022-04-28 11:22:24 +02:00
parent e565786bbc
commit eceaf40430

View file

@ -1387,6 +1387,12 @@ public class HeadersController extends TransactionFormController implements Init
if(!changedLabelEntries.isEmpty()) {
Platform.runLater(() -> EventManager.get().post(new WalletEntryLabelsChangedEvent(event.getWallet(), changedLabelEntries)));
}
} else if(headersForm.getBlockTransaction() != null && headersForm.getBlockTransaction().getHeight() <= 0) {
BlockTransaction walletTransaction = event.getWallet().getWalletTransaction(headersForm.getBlockTransaction().getHash());
if(walletTransaction != null && walletTransaction.getHeight() > 0) {
headersForm.setBlockTransaction(walletTransaction);
updateBlockchainForm(headersForm.getBlockTransaction(), AppServices.getCurrentBlockHeight());
}
}
}