Skip to content

Changelog Consensus

user_name edited this page Feb 3, 2023 · 26 revisions

Changelog

All notable changes to this module will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[0.0.0.24] - 2023-02-03

  • Introduced hotstuffFIFOMempool that extends the logic provided by the genericized FIFO mempool in shared.
  • Added tests for hotstuffFIFOMempool to ensure that it behaves as expected.

[0.0.0.23] - 2023-01-30

  • Fix TestHotstuff4Nodes1BlockHappyPath misplacement of actual and expected values in require.Equal

[0.0.0.22] - 2023-01-25

  • Add a note on consensus test related workaround related to #462

[0.0.0.21] - 2023-01-24

  • Decouple consensus module and pacemaker module
  • Add pacemaker submodule
  • Update pacemaker struct to remove consensus module field, and related functions
  • Create new pacemaker_consensus.go source file that consists ConsensusPacemaker function implementations

[0.0.0.20] - 2023-01-19

  • Rewrite interface{} to any

[0.0.0.19] - 2023-01-18

  • Remove Block proto definition to consolidate under shared/core/types

[0.0.0.18] - 2023-01-11

Consensus - Core

  • Force consensus to use a "star-like" broadcast instead of "RainTree" broadcast
  • Improve logging throughout through the use of emojis and rewording certain statements
  • Slightly improve the block verification flow (renaming, minor fixes, etc…) to stabilize LocalNet

Consensus - Tests

  • Rename the consensus_tests package to e2e_tests
  • Internalize configuration related to fail_on_extra_msgs from the Makefile to the consensus module
  • Forced all tests to fail if we receive extra unexpected messages and modify tests appropriately
  • After #198, we made tests deterministic but there was a hidden bug that modified how the test utility functions because the clock would not move while we were waiting for messages. This prevented logs from streaming, tests from failing, and other issues. Tend to all related changes.

Consensus - Pacemaker

  • Rename ValidateMessage to ShouldHandleMessage and return a boolean
  • Pass a reason to InterruptRound
  • Improve readability of some parts of the code

[0.0.0.17] - 2023-01-10

  • Updated module constructor to accept a bus and not a runtimeMgr anymore
  • Registering module with the bus via RegisterModule method
  • Updated tests and mocks accordingly

[0.0.0.16] - 2023-01-09

  • Added protobuf message definitions for requests related to sharing state sync metadata and blocks
  • Defined the interface for StateSyncServerModule, StateSyncModule (moving the old interface to StateSyncModuleLEGACY as a reference only)
  • Overhaul (updates, improvements, clarifications & additions) of the State Sync README
  • Removed ValidatorMap() ValidatorMap

[0.0.0.15] - 2023-01-03

  • ValidatorMap uses Actor references now

[0.0.0.14] - 2022-12-21

  • Updated do use the new centralized config and genesis
  • Actor is now a shared struct instead of an interface
  • Removed converters between the interfaces and the consensus structs for Validators

[0.0.0.13] - 2022-12-14

  • Consolidated number of validators in tests in a single constant: numValidators
  • Fixed typo in make test_consensus_concurrent_tests so that we can run the correct test matrix
  • Using GetBus() instead of bus wherever possible
  • LeaderElectionModule's electNextLeaderDeterministicRoundRobin now uses Persistence to access the list of validators instead of the static ValidatorMap.

[0.0.0.12] - 2022-12-12

  • Unexport ConsensusModule fields
  • Create ConsensusDebugModule interface with setter functions to be used only for debugging puroposes
  • Update test in TestPacemakerCatchupSameStepDifferentRounds in pacemaker_test.go to use setter functions

[0.0.0.11] - 2022-12-06

  • Removed unused consensus.UtilityMessage

[0.0.0.10] - 2022-11-30

  • Propagate highPrepareQC if available to the block being created
  • Remove blockProtoBytes from propagation in SetProposalBlock
  • Guarantee that write context is released when refreshing the utility context
  • Use GetBlockHash(height) instead of GetPrevAppHash to be more explicit
  • Use the real quorumCert when preparing a new block

[0.0.0.9] - 2022-11-30

  • Added state sync interfaces and diagrams

[0.0.0.8] - 2022-11-15

  • Propagate the quorumCertificate on Block commit to the Utility module
  • Slightly improved error handling of the utilityContext lifecycle management

[0.0.0.7] - 2022-11-01

  • Removed apphash and txResults from consensusModule structure
  • Modified lifecycle to set the proposal block within a PersistenceContext
  • Allow block and parts to be committed with the persistence context

[0.0.0.6] - 2022-10-12

  • Stores transactions alongside blocks during commit
  • Added current block []TxResult to the module

#235 Config and genesis handling

  • Updated to use RuntimeMgr
  • Made ConsensusModule struct unexported
  • Updated tests and mocks
  • Removed some cross-module dependencies

[0.0.0.5] - 2022-10-06

  • Don't ignore the exit code of m.Run() in the unit tests

[0.0.0.4] - 2022-09-28

  • consensusModule stores block directly to prevent shared structure in the utilityModule

[0.0.0.3] - 2022-09-26

Consensus logic

  • Pass in a list of messages to findHighQC instead of a hotstuff step
  • Made CreateProposeMessage and CreateVotemessage accept explicit values, identifying some bugs along the way
  • Made sure to call applyBlock when using highQC from previous round
  • Moved business logic for prepareAndApplyBlock into hotstuff_leader.go
  • Removed MaxBlockBytes and storing the consensus genesis type locally as is

Consensus cleanup

  • Using appropriate getters for protocol types in the hotstuff lifecycle
  • Replaced proto.Marshal with codec.GetCodec().Marshal
  • Reorganized and cleaned up the code in consensus/block.go
  • Consolidated & removed a few TODOs throughout the consensus module
  • Added TECHDEBT and TODOs that will be require for a real block lifecycle
  • Fixed typo in hotstuff_types.proto
  • Moved the hotstuff handler interface to consensus/hotstuff_handler.go

Consensus testing

  • Improved mock module initialization in consensus/e2e_tests/utils_test.go

General

  • Added a diagram for AppHash related ContextInitialization
  • Added Makefile keywords for TODO

[0.0.0.2] - 2022-08-25

Encapsulate structures previously in shared #163

  • Ensured proto structures implement shared interfaces
  • ConsensusConfig uses shared interfaces in order to accept MockConsensusConfig in test_artifacts
  • ConsensusGenesisState uses shared interfaces in order to accept MockConsensusGenesisState in test_artifacts
  • Implemented shared validator interface for validator_map functionality

[0.0.0.1] - 2021-03-31

Added new libraries: HotPocket 1st iteration

  • Initial implementation of Basic Hotstuff
  • Initial implementation Hotstuff Pacemaker
  • Deterministic round robin leader election
  • Skeletons, passthroughs and temporary variables for utility integration
  • Initial implementation of the testing framework
  • Tests with make test_pacemaker and make test_hostuff

[0.0.0.0] - 2021-03-31

Added new libraries: VRF & Cryptographic Sortition Libraries

  • Tests with make test_vrf and make test_sortition
  • Benchmarking via make benchmark_sortition
  • VRF Wrapper library in consensus/leader_election/vrf/ of github.com/ProtonMail/go-ecvrf/ecvrf
  • Implementation of Algorand's Leader Election sortition algorithm in consensus/leader_election/sortition/
Clone this wiki locally