Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unrecoverable Null Pointer Exception #118

Closed
hshar7 opened this issue Feb 11, 2020 · 14 comments
Closed

Unrecoverable Null Pointer Exception #118

hshar7 opened this issue Feb 11, 2020 · 14 comments

Comments

@hshar7
Copy link

hshar7 commented Feb 11, 2020

Version: Building from master branch
Ethereum Node: Rinkeby WS Infura
Strategy: PUBSUB

Error:

io.reactivex.exceptions.OnErrorNotImplementedException: The exception was not handled due to missing onError handler in the subscribe() method call. Further reading: https://github.com/ReactiveX/RxJava/wiki/Error-Handling | java.lang.NullPointerException
        at io.reactivex.internal.functions.Functions$OnErrorMissingConsumer.accept(Functions.java:704)
        at io.reactivex.internal.functions.Functions$OnErrorMissingConsumer.accept(Functions.java:701)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onError(LambdaSubscriber.java:79)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onNext(LambdaSubscriber.java:69)
        at io.reactivex.internal.operators.flowable.FlowableSubscribeOn$SubscribeOnSubscriber.onNext(FlowableSubscribeOn.java:97)
        at io.reactivex.internal.operators.flowable.FlowableConcatArray$ConcatArraySubscriber.onNext(FlowableConcatArray.java:76)
        at io.reactivex.internal.operators.flowable.FlowableFlatMap$MergeSubscriber.tryEmitScalar(FlowableFlatMap.java:234)
        at io.reactivex.internal.operators.flowable.FlowableFlatMap$MergeSubscriber.onNext(FlowableFlatMap.java:152)
        at io.reactivex.internal.operators.flowable.FlowableCreate$BufferAsyncEmitter.drain(FlowableCreate.java:547)
        at io.reactivex.internal.operators.flowable.FlowableCreate$BufferAsyncEmitter.onNext(FlowableCreate.java:471)
        at org.web3j.protocol.core.filters.BlockFilter.process(BlockFilter.java:42)
        at org.web3j.protocol.core.filters.Filter.pollFilter(Filter.java:144)
        at org.web3j.protocol.core.filters.Filter.lambda$run$0(Filter.java:92)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
        at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException
        at net.consensys.eventeum.chain.service.domain.wrapper.Web3jBlock.lambda$new$0(Web3jBlock.java:52)
        at org.modelmapper.internal.TypeMapImpl.addMappings(TypeMapImpl.java:236)
        at net.consensys.eventeum.chain.service.domain.wrapper.Web3jBlock.<init>(Web3jBlock.java:47)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.convertToEventeumBlock(PollingBlockSubscriptionStrategy.java:51)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.convertToEventeumBlock(PollingBlockSubscriptionStrategy.java:22)
        at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListeners(AbstractBlockSubscriptionStrategy.java:72)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.lambda$subscribe$0(PollingBlockSubscriptionStrategy.java:38)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onNext(LambdaSubscriber.java:65)
        ... 16 more
Exception in thread "pool-3-thread-6" io.reactivex.exceptions.OnErrorNotImplementedException: The exception was not handled due to missing onError handler in the subscribe() method call. Further reading: https://github.com/ReactiveX/RxJava/wiki/Error-Handling | java.lang.NullPointerException
        at io.reactivex.internal.functions.Functions$OnErrorMissingConsumer.accept(Functions.java:704)
        at io.reactivex.internal.functions.Functions$OnErrorMissingConsumer.accept(Functions.java:701)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onError(LambdaSubscriber.java:79)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onNext(LambdaSubscriber.java:69)
        at io.reactivex.internal.operators.flowable.FlowableSubscribeOn$SubscribeOnSubscriber.onNext(FlowableSubscribeOn.java:97)
        at io.reactivex.internal.operators.flowable.FlowableConcatArray$ConcatArraySubscriber.onNext(FlowableConcatArray.java:76)
        at io.reactivex.internal.operators.flowable.FlowableFlatMap$MergeSubscriber.tryEmitScalar(FlowableFlatMap.java:234)
        at io.reactivex.internal.operators.flowable.FlowableFlatMap$MergeSubscriber.onNext(FlowableFlatMap.java:152)
        at io.reactivex.internal.operators.flowable.FlowableCreate$BufferAsyncEmitter.drain(FlowableCreate.java:547)
        at io.reactivex.internal.operators.flowable.FlowableCreate$BufferAsyncEmitter.onNext(FlowableCreate.java:471)
        at org.web3j.protocol.core.filters.BlockFilter.process(BlockFilter.java:42)
        at org.web3j.protocol.core.filters.Filter.pollFilter(Filter.java:144)
        at org.web3j.protocol.core.filters.Filter.lambda$run$0(Filter.java:92)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
        at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException
        at net.consensys.eventeum.chain.service.domain.wrapper.Web3jBlock.lambda$new$0(Web3jBlock.java:52)
        at org.modelmapper.internal.TypeMapImpl.addMappings(TypeMapImpl.java:236)
        at net.consensys.eventeum.chain.service.domain.wrapper.Web3jBlock.<init>(Web3jBlock.java:47)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.convertToEventeumBlock(PollingBlockSubscriptionStrategy.java:51)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.convertToEventeumBlock(PollingBlockSubscriptionStrategy.java:22)
        at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListeners(AbstractBlockSubscriptionStrategy.java:72)
        at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.lambda$subscribe$0(PollingBlockSubscriptionStrategy.java:38)
        at io.reactivex.internal.subscribers.LambdaSubscriber.onNext(LambdaSubscriber.java:65)
        ... 16 more
@craigwilliams84
Copy link
Collaborator

Thanks for raising this Hayder. I've been at ETHDenver over the last few days, but will take a look ASAP.

@hshar7
Copy link
Author

hshar7 commented Feb 19, 2020

@craigwilliams84 I think also it would be a good idea to return a non-zero system code for something like this so kubernetes would automatically restart it.

@craigwilliams84
Copy link
Collaborator

Hey @hshar7, this should be fixed on the development branch. It seems that infura have started sending null blocks every now and again, which Eventeum wasn't dealing with.

@hshar7
Copy link
Author

hshar7 commented Mar 2, 2020

Awesome -- Thanks!

@0x4Graham
Copy link

0x4Graham commented Jun 3, 2020

Hi team,

Is there a fix for this issue? I'm getting the same issue as above when using wss on mainnet infura.

2020-06-03 15:03:00.790 [BLOCK-DEFAULT-0] INFO net.consensys.eventeum.chain.block.LoggingBlockListener: onBlock - New block mined. Hash: 0x4a510f3e312ff6443e16a3f4dd5ed3e7f1280b83263607a47ec5046a708d4a95, Number: 10193447 io.reactivex.exceptions.OnErrorNotImplementedException: The exception was not handled due to missing onError handler in the subscribe() method call. Further reading: https://github.com/ReactiveX/RxJava/wiki/Error-Handling | java.lang.NullPointerException

@craigwilliams84
Copy link
Collaborator

@grey007 Hey! The fix isn't on master until the next release (hopefully coming soon), so you have a couple of options:

a) Use the development branch and/or latest docker SNAPSHOT. This is the latest unstable code so there are chances that the code may break. Also, there are also a number of other changes in this branch, especially around how events are monitored (via block inspection, rather than event filters).
b) Use the 0.8.1-KAURI docker image, which should have the fix for this NPE and not much else. The corresponding branch is https://github.com/ConsenSys/eventeum/tree/patch/kauri0120

Cheers!

@0x4Graham
Copy link

0x4Graham commented Jun 9, 2020

Hey @craigwilliams84

I used the kauri0120 patch and it worked for most the day and now it's throwing a new error:

2020-06-09 19:13:05.492 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0 at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

@craigwilliams84
Copy link
Collaborator

Hey! Could you post the full stack trace? The NodeHealthCheckService periodically polls the node (getting the latest block) to ensure the node is up and it seems that infura is responding with an invalid response. Does Eventeum ever recover from this point?

@0x4Graham
Copy link

0x4Graham commented Jun 9, 2020

Eventeum never recovers, unfortunately.

Here is the full stack trace:

2020-06-09 19:48:53.193 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!

2020-06-09 19:48:53.193 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure

2020-06-09 19:48:53.193 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...

2020-06-09 19:48:53.929 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.

2020-06-09 19:48:54.117 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default

org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0

at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na]

at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252]

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252]

at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252]

2020-06-09 19:48:57.258 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default

org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0

at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na]

at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252]

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252]

at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252]

2020-06-09 19:48:57.258 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!

2020-06-09 19:48:57.258 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure

2020-06-09 19:48:57.258 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...

2020-06-09 19:48:58.062 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.

2020-06-09 19:48:58.230 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default

org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0

at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na]

at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252]

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252]

at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252]

2020-06-09 19:49:01.382 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default

org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0

at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na]

at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252]

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252]

at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252]

2020-06-09 19:49:01.383 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!

2020-06-09 19:49:01.384 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure

2020-06-09 19:49:01.384 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...

2020-06-09 19:49:02.135 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.

2020-06-09 19:49:02.299 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default

org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0

at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na]

at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na]

at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252]

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252]

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252]

at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252]

@0x4Graham
Copy link

Here are the logs for when I restart the container:

at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.371 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.371 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.372 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.373 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.373 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.373 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.374 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.374 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.374 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.374 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.374 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.375 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.375 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.375 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.375 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.375 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.376 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.376 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.376 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.377 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.378 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.379 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.379 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.379 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.379 [BLOCK-DEFAULT-0] ERROR net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy: triggerListener - An error occured when processing block with hash 0x18b18ffca4f1c66b4819a835322ed4a85ff547b316f0c21c674aa4e26757fe1b,
org.java_websocket.exceptions.WebsocketNotConnectedException: null,
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:608) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.WebSocketImpl.send(WebSocketImpl.java:585) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.java_websocket.client.WebSocketClient.send(WebSocketClient.java:309) ~[Java-WebSocket-1.3.8.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendRequest(WebSocketService.java:189) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.sendAsync(WebSocketService.java:178) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.websocket.WebSocketService.send(WebSocketService.java:157) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.Request.send(Request.java:81) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getTransactionReceipt(Web3jService.java:200) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.block.EventConfirmationBlockListener.onBlock(EventConfirmationBlockListener.java:67) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.triggerListener(AbstractBlockSubscriptionStrategy.java:101) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$null$0(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_252],
at net.consensys.eventeum.chain.service.strategy.AbstractBlockSubscriptionStrategy.lambda$triggerListeners$1(AbstractBlockSubscriptionStrategy.java:95) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:01.885 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:02.033 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:05.188 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:05.188 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:05.188 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:05.188 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:05.852 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:05.986 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:09.136 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:09.136 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:09.136 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:09.136 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:09.848 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:10.106 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:13.265 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:13.265 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:13.266 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:13.266 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:13.994 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:14.149 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:17.311 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:17.311 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:17.311 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:17.311 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:17.987 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:18.184 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:21.623 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:21.624 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:21.624 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:21.624 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:22.327 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:22.469 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:25.618 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:25.618 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:25.618 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:25.618 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:26.363 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:26.533 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:29.682 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:29.682 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:29.682 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:29.682 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:30.499 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:30.637 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:33.774 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:33.774 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:33.774 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:33.774 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:34.468 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:34.707 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:37.855 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:37.857 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:37.858 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:37.858 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:38.527 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:38.700 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:41.858 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:41.859 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:41.859 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:41.860 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:42.567 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:42.736 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:45.925 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:45.925 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:45.925 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:45.926 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:47.149 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:47.299 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:50.533 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:94) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
2020-06-09 19:51:50.534 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: checkHealth - Node default is down or unsubscribed!!,
2020-06-09 19:51:50.534 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.service.health.strategy.WebSocketResubscribeNodeFailureListener: reconnect - Reconnecting web socket because of default node failure,
2020-06-09 19:51:50.534 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Attempting websocket reconnection...,
2020-06-09 19:51:51.299 [eventeum-scheduler1] INFO net.consensys.eventeum.chain.websocket.WebSocketReconnectionManager: reconnect - Websocket reconnected successfully.,
2020-06-09 19:51:51.446 [eventeum-scheduler1] ERROR net.consensys.eventeum.chain.service.health.NodeHealthCheckService: isNodeConnected - Get latest block failed with exception on node default,
org.web3j.exceptions.MessageDecodingException: Value must be in format 0x[1-9]+[0-9]* or 0x0,
at org.web3j.utils.Numeric.decodeQuantity(Numeric.java:43) ~[utils-4.5.11.jar!/:na],
at org.web3j.protocol.core.methods.response.EthBlockNumber.getBlockNumber(EthBlockNumber.java:23) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.Web3jService.getCurrentBlockNumber(Web3jService.java:219) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.isNodeConnected(NodeHealthCheckService.java:121) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.doReconnect(NodeHealthCheckService.java:145) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.checkHealth(NodeHealthCheckService.java:110) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.health.NodeHealthCheckService.lambda$new$0(NodeHealthCheckService.java:85) [eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_252],
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) ~[na:1.8.0_252],
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[na:1.8.0_252],
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[na:1.8.0_252],
at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_252],
Starting eventeum with command: java -jar eventeum-server.jar,
2020-06-09 19:51:54.945 INFO 8 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$f0131f26] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
,
. ____ _ __ _ ,
/\ / ' __ _ () __ __ _ \ \ \ ,
( ( )_
| '_ | '| | ' / ` | \ \ \ ,
\/ )| |)| | | | | || (| | ) ) ) ),
' |
| .__|| ||| |_, | / / / /,
=========|
|==============|/=////,
:: Spring Boot :: (v2.1.0.RELEASE),
,
2020-06-09 19:51:55.180 [main] INFO net.consensys.eventeumserver.Application: logStartupProfileInfo - No active profile set, falling back to default profiles: default,
2020-06-09 19:51:56.056 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate: multipleStoresDetected - Multiple Spring Data modules found, entering strict repository configuration mode!,
2020-06-09 19:51:56.057 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate: registerRepositoriesIn - Bootstrapping Spring Data repositories in DEFAULT mode.,
2020-06-09 19:51:56.357 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate: registerRepositoriesIn - Finished Spring Data repository scanning in 295ms. Found 4 repository interfaces.,
2020-06-09 19:51:57.845 [main] INFO org.springframework.cloud.context.scope.GenericScope: setSerializationId - BeanFactory id=7ffb1eab-8544-3914-b6a9-a86ff97d87fb,
2020-06-09 19:51:57.862 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'org.springframework.kafka.annotation.KafkaBootstrapConfiguration' of type [org.springframework.kafka.annotation.KafkaBootstrapConfiguration$$EnhancerBySpringCGLIB$$a7ab2dac] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:57.943 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'org.springframework.amqp.rabbit.annotation.RabbitBootstrapConfiguration' of type [org.springframework.amqp.rabbit.annotation.RabbitBootstrapConfiguration$$EnhancerBySpringCGLIB$$9a64da57] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:57.987 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'org.springframework.retry.annotation.RetryConfiguration' of type [org.springframework.retry.annotation.RetryConfiguration$$EnhancerBySpringCGLIB$$c9bcb44e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.037 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'deadLetterSettings' of type [net.consensys.kafkadl.internal.DeadLetterSettings] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.039 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'net.consensys.kafkadl.internal.beanregistration.KafkaDeadLetterConfiguration' of type [net.consensys.kafkadl.internal.beanregistration.KafkaDeadLetterConfiguration$$EnhancerBySpringCGLIB$$bf593714] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.062 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'eventeumKafkaSettings' of type [net.consensys.eventeum.integration.KafkaSettings] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.064 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'eventeumKafkaConfiguration' of type [net.consensys.eventeum.config.KafkaConfiguration$$EnhancerBySpringCGLIB$$8ec01e2b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.074 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'eventeumProducerFactory' of type [org.springframework.kafka.core.DefaultKafkaProducerFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.084 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'eventeumKafkaTemplate' of type [org.springframework.kafka.core.KafkaTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.103 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'deadLetterTopicNameConvention' of type [net.consensys.kafkadl.internal.DeadLetterTopicNameConvention] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.104 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'errorTopicForwarder' of type [net.consensys.kafkadl.internal.forwarder.ErrorTopicForwarder] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.106 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'kafkaProperties' of type [net.consensys.kafkadl.internal.KafkaProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.108 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'recoveryCallback' of type [net.consensys.kafkadl.internal.failure.DeadLetterRecoveryCallback] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.115 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'deadLetterRetryTemplate' of type [org.springframework.retry.support.RetryTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.128 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker: postProcessAfterInitialization - Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$f0131f26] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying),
2020-06-09 19:51:58.460 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer: initialize - Tomcat initialized with port(s): 8060 (http),
2020-06-09 19:51:58.483 [main] INFO org.apache.catalina.core.StandardService: log - Starting service [Tomcat],
2020-06-09 19:51:58.484 [main] INFO org.apache.catalina.core.StandardEngine: log - Starting Servlet Engine: Apache Tomcat/9.0.12,
2020-06-09 19:51:58.497 [main] INFO org.apache.catalina.core.AprLifecycleListener: log - The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib],
2020-06-09 19:51:58.556 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]: log - Initializing Spring embedded WebApplicationContext,
2020-06-09 19:51:58.908 [main] INFO org.mongodb.driver.cluster: info - Cluster created with settings {hosts=[mongodb:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=5000},
2020-06-09 19:51:58.909 [main] INFO org.mongodb.driver.cluster: info - Adding discovered server mongodb:27017 to client view of cluster,
2020-06-09 19:51:58.999 [cluster-ClusterId{value='5edfe85ee684d90008c0ba39', description='null'}-mongodb:27017] INFO org.mongodb.driver.connection: info - Opened connection [connectionId{localValue:1, serverValue:24}] to mongodb:27017,
2020-06-09 19:51:59.006 [cluster-ClusterId{value='5edfe85ee684d90008c0ba39', description='null'}-mongodb:27017] INFO org.mongodb.driver.cluster: info - Monitor thread successfully connected to server with description ServerDescription{address=mongodb:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 2, 7]}, minWireVersion=0, maxWireVersion=8, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=4057603},
2020-06-09 19:51:59.007 [cluster-ClusterId{value='5edfe85ee684d90008c0ba39', description='null'}-mongodb:27017] INFO org.mongodb.driver.cluster: info - Discovered cluster type of STANDALONE,
2020-06-09 19:51:59.213 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'characterEncodingFilter' to: [/],
2020-06-09 19:51:59.214 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'webMvcMetricsFilter' to: [/
],
2020-06-09 19:51:59.214 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'hiddenHttpMethodFilter' to: [/],
2020-06-09 19:51:59.214 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'formContentFilter' to: [/
],
2020-06-09 19:51:59.215 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'requestContextFilter' to: [/],
2020-06-09 19:51:59.215 [main] INFO org.springframework.boot.web.servlet.FilterRegistrationBean: configure - Mapping filter: 'httpTraceFilter' to: [/
],
2020-06-09 19:51:59.216 [main] INFO org.springframework.boot.web.servlet.ServletRegistrationBean: addRegistration - Servlet dispatcherServlet mapped to [/],
2020-06-09 19:51:59.803 [main] INFO org.mongodb.driver.connection: info - Opened connection [connectionId{localValue:2, serverValue:25}] to mongodb:27017,
2020-06-09 19:51:59.813 [main] INFO net.consensys.eventeum.chain.service.Web3jService: connect - Subscribing to block events,
2020-06-09 19:52:00.143 [main] WARN org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext: refresh - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'chainBootstrapper' defined in URL [jar:file:/eventeum-server.jar!/BOOT-INF/lib/eventeum-core-0.8.1-KAURI.jar!/net/consensys/eventeum/chain/ChainBootstrapper.class]: Invocation of init method failed; nested exception is java.lang.NullPointerException,
2020-06-09 19:52:00.146 [main] INFO org.mongodb.driver.connection: info - Closed connection [connectionId{localValue:2, serverValue:25}] to mongodb:27017 because the pool has been closed.,
2020-06-09 19:52:00.150 [main] INFO org.apache.catalina.core.StandardService: log - Stopping service [Tomcat],
2020-06-09 19:52:00.193 [main] INFO org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener: logMessage - ,
,
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.,
2020-06-09 19:52:00.197 [main] ERROR org.springframework.boot.SpringApplication: reportFailure - Application run failed,
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'chainBootstrapper' defined in URL [jar:file:/eventeum-server.jar!/BOOT-INF/lib/eventeum-core-0.8.1-KAURI.jar!/net/consensys/eventeum/chain/ChainBootstrapper.class]: Invocation of init method failed; nested exception is java.lang.NullPointerException,
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1745) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:576) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:498) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:846) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:863) ~[spring-context-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:546) ~[spring-context-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) [spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) [spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) [spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) [spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) [spring-boot-2.1.0.RELEASE.jar!/:2.1.0.RELEASE],
at net.consensys.eventeumserver.Application.main(Application.java:29) [classes!/:0.8.1-KAURI],
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_252],
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_252],
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_252],
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_252],
at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) [eventeum-server.jar:0.8.1-KAURI],
at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) [eventeum-server.jar:0.8.1-KAURI],
at org.springframework.boot.loader.Launcher.launch(Launcher.java:50) [eventeum-server.jar:0.8.1-KAURI],
at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:51) [eventeum-server.jar:0.8.1-KAURI],
Caused by: java.lang.NullPointerException: null,
at org.web3j.protocol.rx.JsonRpc2_0Rx.getBlockNumber(JsonRpc2_0Rx.java:258) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.rx.JsonRpc2_0Rx.getLatestBlockNumber(JsonRpc2_0Rx.java:248) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.rx.JsonRpc2_0Rx.replayPastBlocksFlowableSync(JsonRpc2_0Rx.java:202) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.rx.JsonRpc2_0Rx.replayPastBlocksFlowable(JsonRpc2_0Rx.java:184) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.rx.JsonRpc2_0Rx.replayPastAndFutureBlocksFlowable(JsonRpc2_0Rx.java:235) ~[core-4.5.11.jar!/:na],
at org.web3j.protocol.core.JsonRpc2_0Web3j.replayPastAndFutureBlocksFlowable(JsonRpc2_0Web3j.java:768) ~[core-4.5.11.jar!/:na],
at net.consensys.eventeum.chain.service.strategy.PollingBlockSubscriptionStrategy.subscribe(PollingBlockSubscriptionStrategy.java:54) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.chain.service.Web3jService.connect(Web3jService.java:154) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.service.DefaultSubscriptionService.subscribeToNewBlockEvents(DefaultSubscriptionService.java:242) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at net.consensys.eventeum.service.DefaultSubscriptionService.lambda$init$0(DefaultSubscriptionService.java:91) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at java.util.ArrayList.forEach(ArrayList.java:1257) ~[na:1.8.0_252],
at net.consensys.eventeum.service.DefaultSubscriptionService.init(DefaultSubscriptionService.java:91) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_252],
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_252],
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_252],
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_252],
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343) ~[spring-aop-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:206) ~[spring-aop-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at com.sun.proxy.$Proxy137.init(Unknown Source) ~[na:na],
at net.consensys.eventeum.chain.ChainBootstrapper.afterPropertiesSet(ChainBootstrapper.java:58) ~[eventeum-core-0.8.1-KAURI.jar!/:0.8.1-KAURI],
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1804) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1741) ~[spring-beans-5.1.2.RELEASE.jar!/:5.1.2.RELEASE],
... 24 common frames omitted,

@craigwilliams84
Copy link
Collaborator

@grey007 Hmmm, it seems that possibly the connection to the node is failing. You said that you're connecting to Infura right? Are you adding your api key to the infura node url?

@0x4Graham
Copy link

I am using infura, and I'm adding the API key + setting the block strategy to PUBSUB

@0x4Graham
Copy link

@craigwilliams84 I've seemed to get everything running again.

The issue looks to be related to the events:

  1. Block came with contract events that have been subscribed to. There is either an issue with the block data or the event data and Eventeum seems go into a crashing loop.
  2. It picks up new blocks, but because there was an error somewhere is unsubscribed from the events and is trying to subscribe again.
  3. When subscribed, eventeum tries to get the events for block it last had for the events?
  4. Crashes again.

@josephlama07
Copy link

I am having the same issue , how can i solve this @craigwilliams84?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants