Sfoglia il codice sorgente

small corrections to docs

x 3 anni fa
parent
commit
c9ff1f9571
1 ha cambiato i file con 5 aggiunte e 6 eliminazioni
  1. 5 6
      doc/src/misc/hashchain/hashchain.md

+ 5 - 6
doc/src/misc/hashchain/hashchain.md

@@ -12,7 +12,7 @@ The `Event` could have many actions according to the underlying data.
 
 	enum EventAction { ... };	
 
-#### Privmsg 
+### Privmsg 
 
 | Description 	| Data Type   	| Comments																	|
 |-------------- |-------------- | ------------------------------------------------------------------------- |
@@ -25,17 +25,16 @@ The `Event` could have many actions according to the underlying data.
 | Description            | Data Type      | Comments                    |
 |----------------------- | -------------- | --------------------------- |
 | previous_event_hash    | `EventId` 	  | Hash of the previous `Event`|
-| Action     			 | `EventAction`  | `Event`'s action 			|
-| Timestamp     		 | u64  		  | `Event`'s timestamp 		|
-| read_confirms			 | u8	 		  | A confirmation counter 	    |
+| action     			 | `EventAction`  | `Event`'s action 			|
+| timestamp     		 | u64  		  | `Event`'s timestamp 		|
 
 ## EventNode
 
 | Description    | Data Type      		  | Comments                    			 			  |
 |--------------- | ---------------------- | ----------------------------------------------------- |
 | parent    	 | Option<`EventId`> 	  | Only current root has this set to None   			  |
-| Event     	 | `Event`  			  | The `Event` itself 					       			  |
-| Children     	 | Vec<`EventId`>  	      | The `Event`s which has parent as this `Event` hash    |
+| event     	 | `Event`  			  | The `Event` itself 					       			  |
+| children     	 | Vec<`EventId`>  	      | The `Event`s which has parent as this `Event` hash    |
 
 ## Model