diff options
-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 |