diff --git a/rfc/0006_ws2p_v2.md b/rfc/0006_ws2p_v2.md
index 6b5ca8a56bcfbdef7a70fec06c667cfaa3a8fbe8..a6488a918f2bf3cec56ee3666869fe923123f9b8 100644
--- a/rfc/0006_ws2p_v2.md
+++ b/rfc/0006_ws2p_v2.md
@@ -249,21 +249,20 @@ All numbers (integers and floats) are encoded in little endian.
 
 All binary WS2P v2 messages are encapsulated in the following format :
 
-|     data name    | size in bytes | data type        |
-|:----------------:|--------------:|-----------------:|
-|   ws2p_version   | 4             |    u32           |
-|   currency_name  | ?             |   String         |
-|  issuer_node_id  | 4             |    u32           |
-|   issuer_pubkey  | ?             | PubkeyBox        |
-|   message_type   | 4             | u32              |
-|     payload      | ?             | ?*               |
-|   message_hash   | 32            | Opt([u8; 32])    |
-|     signature    | ?             | Opt(SigBox)      |
-
-ws2p_version := This field is placed first so that future versions of WS2P are not constrained on the other fields,
+|   data name    | size in bytes |   data type |
+| :------------: | ------------: | ----------: |
+|  ws2p_version  |             4 |         u32 |
+| currency_name  |             ? |      String |
+| issuer_node_id |             4 |         u32 |
+| issuer_pubkey  |             ? |   PubkeyBox |
+|  message_type  |             4 |         u32 |
+|    payload     |             ? |          ?* |
+|   signature    |             ? |      SigBox |
+
+`ws2p_version` := This field is placed first so that future versions of WS2P are not constrained on the other fields,
 the only constraint will be to start the message with the version number stored in u32.
 
-currency_name := Empty string is allowed, it allow the user to synchronize his node without having to manually enter the currency on which he synchronizes. The node will then adopt the currency that is specified in the CONNECT message it will receive from the selected reference node.
+`currency_name` := Empty string is allowed, it allow the user to synchronize his node without having to manually enter the currency on which he synchronizes. The node will then adopt the currency that is specified in the CONNECT message it will receive from the selected reference node.
 
 _* The type of `payload` is determined by the content of `message_type`._