atoulme commented on issue #269:
URL: 
https://github.com/apache/incubator-tuweni/issues/269#issuecomment-1407534171

   This is now implemented as part of checking the execution here:
   ```
     private fun hashForId(id: SECP256K1.PublicKey): ByteArray? {
       try {
         return idHashCache.get(id) { 
EthereumNodeRecord.nodeId(id).toArrayUnsafe() }
       } catch (e: UncheckedExecutionException) {
         if (e.cause is IllegalArgumentException) {
           return null
         }
         throw e
       }
     }
   ```
   
   Closing as complete.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@tuweni.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tuweni.apache.org
For additional commands, e-mail: dev-h...@tuweni.apache.org

Reply via email to