Skip to content

Commit

Permalink
Remove call to PanicProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-iov committed Jan 27, 2025
1 parent 9b7347f commit 43a94d9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions rskj-core/src/main/java/co/rsk/peg/BridgeSupport.java
Original file line number Diff line number Diff line change
Expand Up @@ -2553,7 +2553,6 @@ public void registerBtcCoinbaseTransaction(
blockHeader.getMerkleRoot()
);
logger.warn("{} {}", LOG_PREFIX, panicMessage);
panicProcessor.panic("btclock", panicMessage);
return;
}

Expand Down Expand Up @@ -3192,7 +3191,6 @@ protected boolean validationsForRegisterBtcTransaction(Sha256Hash btcTxHash, int
} catch (Exception e) {
String panicMessage = String.format("[validationsForRegisterBtcTransaction] Btc Tx %s Supplied Height is %d but should be greater than 0", btcTxHash, height);
logger.warn(panicMessage);
panicProcessor.panic("btclock", panicMessage);
return false;
}

Expand Down Expand Up @@ -3231,7 +3229,6 @@ protected boolean validationsForRegisterBtcTransaction(Sha256Hash btcTxHash, int
blockHeader.getMerkleRoot()
);
logger.warn(panicMessage);
panicProcessor.panic("btclock", panicMessage);
return false;
}

Expand Down

0 comments on commit 43a94d9

Please sign in to comment.