# sn_consensus [MaidSafe website](http://maidsafe.net) | [Safe Network Forum](https://safenetforum.org/) :-------------------------------------: | :---------------------------------------------: ## About This Safe Network Membership module enables nodes to dynamically join and leave a Safe Network Section. A consensus algorithm is run by Section Elders to decide on reconfigurations. The algorithm proceeds in stages: 1. An Elder proposes a reconfig (Join or Leave) on behalf of a joining node. The proposal is broadcast to all Elders 2. If an Elder detects a split vote, they propose a Merge vote. (this may happen up to O(log(n)) times) 3. If an Elder sees a super-majority of agreeing votes, they propose a SuperMajority vote 4. Once an Elder sees a super-majority of SuperMajority votes, they execute the decided on reconfig(s). ## Tests ### Message Sequence Charts (MSC) You will notice that after running `cargo test`, A collection of `.msc` files are generated.. These files show the progression of vote's as they are processed by the network. They can be rendered using the [mscgen](http://www.mcternan.me.uk/mscgen/). For example the `test_round_robin_split_vote` test generates charts demonstrating how the network handles split votes from 1 through to 6 members, to render out a chart for the case where 2 members vote differently run: ```bash cargo test # generates the *.msc files in the current directory. mscgen -T png -i round_robin_split_vote_2.msc -o round_robin_split_vote_2.png ``` The rendered chart `round_robin_split_vote_2.png` will look something like the following: ![round robin split vote with 2 members](./docs/round_robin_split_vote_2.png) Note that although the lines between network members are perfectly horizontal, this does not mean that the vote was sent and received instantly. When a network member receives a vote, it responds immediately with it's votes (if any) but the simulated network queues up these votes and delivers them deterministically. The horizontal lines show when a vote was finally delivered to it's destination and who it was from. ## License This Safe Network software is dual-licensed under the Modified BSD ( ) or the MIT license ( ) at your option. ## Contributing Want to contribute? Great :tada: There are many ways to give back to the project, whether it be writing new code, fixing bugs, or just reporting errors. All forms of contributions are encouraged! For instructions on how to contribute, see our [Guide to contributing](https://github.com/maidsafe/QA/blob/master/CONTRIBUTING.md).