Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AureliaDolo committed Mar 9, 2022
1 parent 31b4f12 commit 9439c70
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion massa-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ impl RpcClient {
// User (interaction with the node)

/// Adds operations to pool. Returns operations that were ok and sent to pool.
pub async fn send_operations(&self, operations: Vec<SignedOperation>) -> RpcResult<Vec<OperationId>> {
pub async fn send_operations(
&self,
operations: Vec<SignedOperation>,
) -> RpcResult<Vec<OperationId>> {
self.call_method("send_operations", "Vec<OperationId>", vec![operations])
.await
}
Expand Down

0 comments on commit 9439c70

Please sign in to comment.