amirylm
amirylm
There are cases where messages doesn't arrive for some of the peers which seems to be connected on the topic.
`panic: runtime error: index out of range [0] with length 0` Caused by an empty signing root
There are errors in pre-prepare message pipeline: `msg pipeline error {"error": "Unjustified pre-prepare: no change round quorum"}` https://github.com/bloxapp/ssv/blob/64b938fc15b5d3d3573d9180bf17ffdde114092d/ibft/pre_prepare.go#L49
Current instance state is saved into storage when it hits a prepare quorum. The idea is to save it in case the node crashes right after so when he boots...
Currently we use a timeout of 5sec, but we should also have some strategy when the request fails (e.g. retry) `call to GetDuties() failed: rpc error: code = DeadlineExceeded desc...
There is a data race on `currentInstance`: ``` === RUN TestForceDecided badger 2021/08/08 14:09:11 INFO: Set nextTxnTs to 0 2021-08-08T14:09:11.542336Z INFO kv/badger.go:45 Badger db initialized {"app": "simulator"} seed - 16413883976378449900...
On startup the ssv-node makes a self-check and tries to connect to itself when the host-address flag is set. Regardless whether the connection fails, it wants to close the connection,...