Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
segfaultdoc committed Oct 25, 2023
1 parent 1f9a087 commit d268ea7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions runtime-plugin/src/runtime_plugin_admin_rpc_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ impl RuntimePluginAdminRpc for RuntimePluginAdminRpcImpl {

fn list_plugins(&self, meta: Self::Metadata) -> BoxFuture<JsonRpcResult<Vec<String>>> {
Box::pin(async move {
info!("sssss list");
let (response_sender, response_receiver) = oneshot_channel();

if meta
Expand Down
1 change: 1 addition & 0 deletions validator/src/admin_rpc_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ impl AdminRpc for AdminRpcImpl {

fn list_plugins(&self, meta: Self::Metadata) -> BoxFuture<Result<Vec<String>>> {
Box::pin(async move {
info!("ssss list admin");
// Construct channel for plugin to respond to this particular rpc request instance
let (response_sender, response_receiver) = oneshot_channel();

Expand Down

0 comments on commit d268ea7

Please sign in to comment.