This commit is contained in:
John Smith
2023-06-23 17:01:52 -04:00
parent b2bd4bcbbd
commit bc6421acf7
5 changed files with 77 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ use super::*;
impl RPCProcessor {
// Sends a high level app request and wait for response
// Can be sent via all methods including relays and routes
#[instrument(level = "trace", skip(self), ret, err)]
#[instrument(level = "trace", skip(self, message), ret, err)]
pub async fn rpc_call_app_call(
self,
dest: Destination,

View File

@@ -3,7 +3,7 @@ use super::*;
impl RPCProcessor {
// Sends a high level app message
// Can be sent via all methods including relays and routes
#[instrument(level = "trace", skip(self), ret, err)]
#[instrument(level = "trace", skip(self, message), ret, err)]
pub async fn rpc_call_app_message(
self,
dest: Destination,