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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]