aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYigit Sever2021-04-13 15:53:03 +0300
committerYigit Sever2021-04-13 15:53:03 +0300
commited9ffcef84e65308e4e6aff018d901fe36b17b7f (patch)
tree41f777840654da340adb8860b697ba3e0c57ba97 /src
parent025320be2424b803e8f18285829e20df19615c21 (diff)
downloadgradecoin-ed9ffcef84e65308e4e6aff018d901fe36b17b7f.tar.gz
gradecoin-ed9ffcef84e65308e4e6aff018d901fe36b17b7f.tar.bz2
gradecoin-ed9ffcef84e65308e4e6aff018d901fe36b17b7f.zip
Fix docs again
Diffstat (limited to 'src')
-rw-r--r--src/schema.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schema.rs b/src/schema.rs
index d34de78..b07744a 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -46,10 +46,10 @@ pub struct Claims {
46/// [`Db::blockchain`] is just the last block that was mined. All the blocks are written to disk as text 46/// [`Db::blockchain`] is just the last block that was mined. All the blocks are written to disk as text
47/// files whenever they are accepted. 47/// files whenever they are accepted.
48/// 48///
49/// [`pending_transactions`] is the in memory representation of the waiting transactions. Every 49/// [`Db::pending_transactions`] is the in memory representation of the waiting transactions. Every
50/// user can have only one outstanding transaction at any given time. 50/// user can have only one outstanding transaction at any given time.
51/// 51///
52/// [`users`] is the in memory representation of the users, with their public keys, metu_ids and 52/// [`Db::users`] is the in memory representation of the users, with their public keys, metu_ids and
53/// gradecoin balances. 53/// gradecoin balances.
54/// 54///
55/// TODO: Replace the pending_transactions HashMap<String, Transaction> with 55/// TODO: Replace the pending_transactions HashMap<String, Transaction> with