error log

This commit is contained in:
djmil 2023-11-28 22:12:50 +01:00
parent 7c96bc3fc5
commit 2cfe68947b

View File

@ -44,6 +44,10 @@ public class CommitTrxResponder implements ResponderFlow {
log.info("Approval for " + trxToValidate.getId()); log.info("Approval for " + trxToValidate.getId());
}; };
if (utxoLedgerService == null) {
log.error("utxoLedgerService is NULL");
return;
}
UtxoSignedTransaction finalizedSignedTransaction = this.utxoLedgerService UtxoSignedTransaction finalizedSignedTransaction = this.utxoLedgerService
.receiveFinality(session, txValidator) .receiveFinality(session, txValidator)
.getTransaction(); .getTransaction();