We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd05f31 commit ebe2955Copy full SHA for ebe2955
1 file changed
crates/store/src/state/mod.rs
@@ -1051,6 +1051,7 @@ impl State {
1051
/// For specific key queries (`SlotData::MapKeys`), the forest is used to provide SMT proofs.
1052
/// Returns an error if the forest doesn't have data for the requested slot.
1053
/// All-entries queries (`SlotData::All`) use the forest to request all entries database.
1054
+ #[allow(clippy::too_many_lines)]
1055
async fn fetch_public_account_details(
1056
&self,
1057
account_id: AccountId,
@@ -1141,6 +1142,7 @@ impl State {
1141
1142
}
1143
1144
1145
+ // TODO parallelize the read requests
1146
for (index, slot_name) in all_entries_requests {
1147
let details = self
1148
.db
0 commit comments