We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a86d3 commit 82ced8aCopy full SHA for 82ced8a
1 file changed
framework/contracts/native/version-control/src/queries.rs
@@ -120,8 +120,7 @@ pub fn handle_module_list_query(
120
mod_lib
121
.range(deps.storage, start_bound, None, Order::Ascending)
122
.take(limit)
123
- .collect::<StdResult<Vec<_>>>()?
124
- .into_iter(),
+ .collect::<StdResult<Vec<_>>>()?,
125
);
126
};
127
@@ -162,8 +161,7 @@ pub fn handle_namespaces_query(
162
161
.account_id
163
.prefix(account_id)
164
.range(deps.storage, None, None, Order::Ascending)
165
166
167
168
}
169
0 commit comments