Skip to content

Commit

Permalink
Changed some field names.
Browse files Browse the repository at this point in the history
Corrected a misspelling.

Improved some text.
  • Loading branch information
cseberino committed Aug 15, 2018
1 parent b36f568 commit cc1bea5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
6 changes: 3 additions & 3 deletions docs/world_computer/accounts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ following five components:
addresses
These are sets of numbers used to identify accounts.

funds
balances
All funds are associated with accounts. This is a balance of classic ether,
also know as ether or ETC.

smart contracts
All smart contracts are associated with accounts. This component is an
empty string for user accounts.

memories
All smart contracts have associated memory arrays. This component is an
storage
All smart contracts have associated memory. This component is an
empty string for user accounts.

nonces
Expand Down
10 changes: 5 additions & 5 deletions docs/world_database/blocks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Blocks
================================================================================

The ETC blockchain is composed of an array of blocks. Blocks contain three
categories of information: *computation*, *consensys* and *context*. Blocks
categories of information: *computation*, *consensus* and *context*. Blocks
contain transaction related information (computation), mining related
information (consensys), and, information to properly locate blocks
information (consensus), and, information to properly locate blocks
on the blockchain (context). All components except for two lists form the block
headers.

Expand Down Expand Up @@ -44,10 +44,10 @@ transaction logs. Nevertheless, the full specification of any state or
transaction log can always be obtained by reapplying all the transactions on the
blockchain with respect to the initial state.

.. _sec_consensys:
.. _sec_consensus:

--------------------------------------------------------------------------------
Consensys
Consensus
--------------------------------------------------------------------------------

Mining is the process of creating and validating new blocks. This is referred to
Expand Down Expand Up @@ -108,7 +108,7 @@ parent header hashes
Keccak 256 hash of parent block headers

dates & times
dates and times blocks were added to the blockchain
dates and times that blocks were added to the blockchain

The parent block of a block is the preceding block on the blockchain. Dates and
times are denoted by the number of seconds since 1970–01–01 00:00:00 UTC.
Expand Down
15 changes: 9 additions & 6 deletions docs/world_database/transactions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,18 @@ data
associated constructors. For smart contract execution transactions, this
contains the data operated on.

gifts
amount in classic ether to be transferred to the receiving account
transfer amount
amount of classic ether, in units of wei, to be transferred to the receiving
account

offers
price in classic ether willing to pay per gas unit, and, the maximum gas
units willing to purchase
gas price
offer of classic ether willing to pay per gas unit

maximum gas purchase
maximum number of gas units willing to purchase

nonces
originating user account nonce
originating user account nonces

digital signatures
digital signature of the transaction with respect to the private key of the
Expand Down

0 comments on commit cc1bea5

Please sign in to comment.