aboutsummaryrefslogtreecommitdiffstats
path: root/content/block_docs.md
diff options
context:
space:
mode:
authorYigit Sever2022-04-16 17:31:28 +0300
committerYigit Sever2022-04-16 17:31:28 +0300
commitb7c7e9845cec4d9056fb99e86bec6912a3914171 (patch)
treeff8aa4c0a094c1002708833e63dc2e2d529de8b8 /content/block_docs.md
parent72f1381122986925915ad6c394a637435a2a62ef (diff)
downloadgradecoin-site-b7c7e9845cec4d9056fb99e86bec6912a3914171.tar.gz
gradecoin-site-b7c7e9845cec4d9056fb99e86bec6912a3914171.tar.bz2
gradecoin-site-b7c7e9845cec4d9056fb99e86bec6912a3914171.zip
Update for 2022 spring
Diffstat (limited to 'content/block_docs.md')
-rw-r--r--content/block_docs.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/block_docs.md b/content/block_docs.md
index 228277c..2eec2ac 100644
--- a/content/block_docs.md
+++ b/content/block_docs.md
@@ -7,8 +7,8 @@ weight = 10
7> Blocks commit proposed transactions into the ledger. 7> Blocks commit proposed transactions into the ledger.
8> A transaction that do not appear on a valid block is not accepted by the network. 8> A transaction that do not appear on a valid block is not accepted by the network.
9 9
10Blocks in Gradecoin are proposed to commit [Transactions](@/transaction_docs.md) that were proposed previously to the system. 10We use Blocks to commit proposed [Transactions](@/transaction_docs.md) to the ledger in order to realize them.
11`transaction_list` of the Block should be filled with valid transactions to be committed. 11`transaction_list` of the Block is filled with valid transactions.
12Blocks are valid when they are proposed with a `nonce` that produces a `hash` value with 6 zeroes (24 bits) at the left hand side. 12Blocks are valid when they are proposed with a `nonce` that produces a `hash` value with 6 zeroes (24 bits) at the left hand side.
13 13
14We are _mining_ using [blake2s](https://www.blake2.net/) algorithm, which produces 256 bit hashes. 14We are _mining_ using [blake2s](https://www.blake2.net/) algorithm, which produces 256 bit hashes.
@@ -53,7 +53,7 @@ If the resulting hash is valid, then you can create a `Block` JSON object with t
53Fill this with the `hash` value you found during the mining process. 53Fill this with the `hash` value you found during the mining process.
54 54
55# Block Rules 55# Block Rules
56- Blocks should include some minimum number of transactions. 56- Blocks have to include a minimum number of transactions.
57- Blocks cannot have duplicate transactions. 57- Blocks cannot have duplicate transactions.
58 58
59# References 59# References