mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
The foreign_rpc and owner_rpc auto generated helper modules should be made public. (#3734)
* Minor update for foreign api docs. Peers seems to be no longer needed as an arg in the grin_api::Foreign::new. * This changes foreign_rpc and owner_rpc modules to public so the helper modules for the rpc clients can be accessible in external projects.
This commit is contained in:
parent
6d25382ff5
commit
3119899551
2 changed files with 2 additions and 3 deletions
|
@ -59,7 +59,6 @@ where
|
||||||
/// # Arguments
|
/// # Arguments
|
||||||
/// * `chain` - A non-owning reference of the chain.
|
/// * `chain` - A non-owning reference of the chain.
|
||||||
/// * `tx_pool` - A non-owning reference of the transaction pool.
|
/// * `tx_pool` - A non-owning reference of the transaction pool.
|
||||||
/// * `peers` - A non-owning reference of the peers.
|
|
||||||
/// * `sync_state` - A non-owning reference of the `sync_state`.
|
/// * `sync_state` - A non-owning reference of the `sync_state`.
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
|
|
|
@ -33,11 +33,11 @@ mod web;
|
||||||
pub mod auth;
|
pub mod auth;
|
||||||
pub mod client;
|
pub mod client;
|
||||||
mod foreign;
|
mod foreign;
|
||||||
mod foreign_rpc;
|
pub mod foreign_rpc;
|
||||||
mod handlers;
|
mod handlers;
|
||||||
pub mod json_rpc;
|
pub mod json_rpc;
|
||||||
mod owner;
|
mod owner;
|
||||||
mod owner_rpc;
|
pub mod owner_rpc;
|
||||||
mod rest;
|
mod rest;
|
||||||
mod router;
|
mod router;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
|
|
Loading…
Reference in a new issue