Gabriel Garrido Calvo
Gabriel Garrido Calvo
Not sure if we want this feature. Let have a chat about it
After researching over Tendermint protocol version involves I found two areas of investigation: ***P2P Protocol Version*** Every update on the version of the p2p protocol is affecting the communication between...
During the latest Tendermint update https://github.com/lightstreams-network/lightchain/issues/161 protocol version and block version were not upgraded. Postponing this issue till an update is made on either of both version in order to...
Hi @emizzle As you could see from our [lightchain documentation](https://docs.lightstreams.network/cli-docs/lightchain/init/) during the initialization of your node you could specify a different `datadir` using the argument `--datadir=[CHOSEN_DIR]`, by default it is...
Thanks for the explanation. I moved to the project feature pool in order to prioritize its development. I hope that is not a blocker for you, as an easy workaround,...
The population of Tendermint Headers happen in the following part of Tendermint code. github.com/tendermint/tendermint/state/state.go:MakeBlock() ``` if height == 1 { timestamp = state.LastBlockTime // genesis time } else { timestamp...
Due to the implementation of Tendermint ABCI Application, it is not possible to reject/deny a block for consensus when the application layer does not consider a block valid. IMO that...
The block time is being populated by the _MedianTIme_ of every validator _preCommit_ using as weight the voting power of each of the validators, as we see in the following...
According to the answer given by Tendermint team at created issue https://github.com/tendermint/tendermint/issues/3755 IT IS IMPOSSIBLE to generate two blocks within the same second if the `time_iota_ms >= 1000` BUT we...
At the moment the invalid block was created the consensus setup was the one as follow: ``` timeout_propose = "2s" timeout_propose_delta = "500ms" timeout_prevote = "2s" timeout_prevote_delta = "500ms" timeout_precommit...