The `chain::error::FutureResult` doc is currently referring to the wrong
structure
This commit is contained in:
Caio
2019-10-11 20:16:51 -03:00
committed by André Silva
parent eba7df9a7b
commit f60bc521c3
+1 -1
View File
@@ -23,7 +23,7 @@ use jsonrpc_core as rpc;
/// Chain RPC Result type.
pub type Result<T> = std::result::Result<T, Error>;
/// State RPC future Result type.
/// Chain RPC future Result type.
pub type FutureResult<T> = Box<dyn rpc::futures::Future<Item = T, Error = Error> + Send>;
/// Chain RPC errors.