diff options
author | Yigit Sever | 2021-04-13 15:53:03 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-13 15:53:03 +0300 |
commit | b16da2c2b64f753129bb33b734a7982e2622ddd3 (patch) | |
tree | 265128582228f56a12a2bc3253d49f5452016fa8 /src | |
parent | 4a2f77158fdb4cec32226ada7a50a0198fc40482 (diff) | |
download | gradecoin-b16da2c2b64f753129bb33b734a7982e2622ddd3.tar.gz gradecoin-b16da2c2b64f753129bb33b734a7982e2622ddd3.tar.bz2 gradecoin-b16da2c2b64f753129bb33b734a7982e2622ddd3.zip |
Fix docs again
Diffstat (limited to 'src')
-rw-r--r-- | src/schema.rs | 4 |
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 |