Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Docs/starter append #308

Merged
merged 5 commits into from
Aug 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 0 additions & 19 deletions contracts/eosio.bios/include/eosio.bios/eosio.bios.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,6 @@ namespace eosio {
}
}

/**
* EOSIO Contracts
*
* @details The design of the EOSIO blockchain calls for a number of smart contracts that are run at a
* privileged permission level in order to support functions such as block producer registration and
* voting, token staking for CPU and network bandwidth, RAM purchasing, multi-sig, etc. These smart
* contracts are referred to as the system, token, msig and wrap (formerly known as sudo) contracts.
*
* This repository contains examples of these privileged contracts that are useful when deploying,
* managing, and/or using an EOSIO blockchain. They are provided for reference purposes:
* - eosio.bios
* - eosio.system
* - eosio.msig
* - eosio.wrap
*
* The following unprivileged contract(s) are also part of the system.
* - eosio.token
*/

namespace eosio {

using eosio::ignore;
Expand Down
7 changes: 3 additions & 4 deletions contracts/eosio.msig/include/eosio.msig/eosio.msig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <eosio/transaction.hpp>

namespace eosio {

/**
* @defgroup eosiomsig eosio.msig
* @ingroup eosiocontracts
Expand All @@ -27,8 +28,7 @@ namespace eosio {
* authorized by the provided keys and permissions, and if the proposal name doesn’t
* already exist; if all validations pass the `proposal_name` and `trx` trasanction are
* saved in the proposals table and the `requested` permission levels to the
* approvals table (for the `proposer` context).
* Storage changes are billed to `proposer`.
* approvals table (for the `proposer` context). Storage changes are billed to `proposer`.
*
* @param proposer - The account proposing a transaction
* @param proposal_name - The name of the proposal (should be unique for proposer)
Expand All @@ -46,8 +46,7 @@ namespace eosio {
* proposed by `proposer`. If the proposal's requested approval list contains the `level`
* permission then the `level` permission is moved from internal `requested_approvals` list to
* internal `provided_approvals` list of the proposal, thus persisting the approval for
* the `proposal_name` proposal.
* Storage changes are billed to `proposer`.
* the `proposal_name` proposal. Storage changes are billed to `proposer`.
*
* @param proposer - The account proposing a transaction
* @param proposal_name - The name of the proposal (should be unique for proposer)
Expand Down
Loading