Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove todos.
  • Loading branch information
kianenigma committed Mar 9, 2019
commit 7df2b19ff20e97f22213f69e32b6922b42fd3dcc
4 changes: 1 addition & 3 deletions srml/staking/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The staking module is the means by which a set of network maintainers (known as
### Terminology

- **Staking**: The process of locking up funds for some time, placing them at risk of slashing (loss) in order to become a rewarded maintainer of the network.
- **Validating**: The process of running a node to actively maintain the network, either by producing blocks or guaranteeing finality of the chain. (see [here]() for the details of how block production and finalization are separated)
- **Validating**: The process of running a node to actively maintain the network, either by producing blocks or guaranteeing finality of the chain.
- **Nominating**: The process of placing staked funds behind one or more validators in order to share in any reward and punishment, they take.
- **Stash account**: The account holding an owner's funds used for staking.
- **Controller account**: The account which controls an owner's funds for staking.
Expand Down Expand Up @@ -69,7 +69,6 @@ Finally, account 4 can withdraw from any of the above roles via
Staking::chill(Origin::signed(4));
```

TODO: What else could be a usage example here interesting for the user? Do we have any?

## Implementation Details

Expand Down Expand Up @@ -104,7 +103,6 @@ Current election algorithm is implemented based on Phragmen. The reference imple

// Details that the user can modify or customize to make their own


## Dependencies

### GenesisConfig
Expand Down