Skip to content

Commit

Permalink
fix(drive): getProofs limit bug
Browse files Browse the repository at this point in the history
  • Loading branch information
markin-io committed Mar 5, 2024
1 parent 96b8071 commit 34b00a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/rs-drive/src/drive/prove/prove_multiple/v0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ impl Drive {
path_queries.extend(
document_queries
.iter()
.map(|drive_query| drive_query.construct_path_query()),
.map(|drive_query| {
let mut path_query = drive_query.construct_path_query();
path_query.query.limit = None;
path_query
}),
);
count += document_queries.len();
}
Expand Down

0 comments on commit 34b00a0

Please sign in to comment.