Skip to content

Commit

Permalink
refactor(btcreleaseclient): update log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
apancorb authored Nov 4, 2024
1 parent ef01cc3 commit 9e819f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ private boolean isSVPSpendTxReadyToSign(long currentBlockNumber, Keccak256 svpTx
.filter(confirmationDifference -> confirmationDifference >= bridgeConstants.getRsk2BtcMinimumAcceptableConfirmations())
.isPresent();

logger.info("[isReadyToSign] SVP spend tx readiness check for signing: tx hash [{}], Current block [{}], Ready to sign? [{}]",
logger.info("[isSvpSpendTxReadyToSign] SVP spend tx readiness check for signing: tx hash [{}], Current block [{}], Ready to sign? [{}]",
svpTxHash,
currentBlockNumber,
isReadyToSign ? "YES" : "NO");
Expand Down

0 comments on commit 9e819f2

Please sign in to comment.