Skip to content

Commit

Permalink
fix rust clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnaveira committed Jul 24, 2024
1 parent b610d40 commit 68a1a46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/tari_indexer_client/src/json_rpc_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ impl IndexerJsonRpcClient {
filter_by_template: req.filter_by_template.map(|t| t.to_string()),
filter_by_type: req.filter_by_type,
limit: req.limit,
offset: req.offset
offset: req.offset,
};

self.send_request("list_substates", params).await
}

Expand Down

0 comments on commit 68a1a46

Please sign in to comment.