Doc: remove rpc_proposal, include p2p

This commit is contained in:
Marco Stronati 2018-11-28 11:03:47 +01:00
parent d4fa41f61a
commit efe12e2a62
No known key found for this signature in database
GPG Key ID: 5482EFDAF3288023
4 changed files with 5 additions and 9595 deletions

File diff suppressed because it is too large Load Diff

View File

@ -43,11 +43,11 @@ let main _node =
Format.printf "@\n" ;
(* Data *)
Format.printf "%a@\n@\n%a@\n@."
Rst.pp_h1 "Block header (shell)"
Rst.pp_h2 "Block header (shell)"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe Block_header.encoding) ;
Format.printf "%a@\n@\n%a@\n@."
Rst.pp_h1 "Operation (shell)"
Rst.pp_h2 "Operation (shell)"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe Operation.encoding) ;
List.iter
@ -55,11 +55,11 @@ let main _node =
let hash = Protocol_hash.of_b58check_exn hash in
let (module Proto) = Registered_protocol.get_exn hash in
Format.printf "%a@\n@\n%a@\n@."
Rst.pp_h1 "Block_header (alpha-specific)"
Rst.pp_h2 "Block_header (alpha-specific)"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe Proto.block_header_data_encoding) ;
Format.printf "%a@\n@\n%a@\n@."
Rst.pp_h1 "Operation (alpha-specific)"
Rst.pp_h2 "Operation (alpha-specific)"
Data_encoding.Binary_schema.pp
(Data_encoding.Binary.describe Proto.operation_data_encoding) ;
)

View File

@ -149,6 +149,7 @@ in the :ref:`introduction <howtoget>`.
api/cli-commands
api/rpc
api/errors
api/p2p
Indices and tables
==================

View File

@ -48,9 +48,6 @@ simple HTTP request:
An online :ref:`index <rpc_index>` of RPC calls is also available.
The changes made in June 2018 for pre-Betanet are recapitulated in
:ref:`this page<rpc_changes_june_2018>`.
The general call of an RPC from the client is ``tezos-admin-client rpc
(get|post) <url>``.