Skip to content

Commit 56670b6

Browse files
authored
chore: fix nargo fmt formatting in aztec-nr (#22444)
## Summary Fixes the `nargo fmt --check` failure on the backports PR #22441. The comment in `noir-projects/aztec-nr/aztec/src/messages/processing/mod.nr` exceeded the line width limit, causing the formatter to reject it. ## Test plan - CI `nargo fmt --check` should pass on the backports PR after this is merged into `backport-to-v4-next-staging` ClaudeBox log: https://claudebox.work/s/e09a3592270d40e2?run=1
2 parents b26ecc8 + 0eaa6ea commit 56670b6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • noir-projects/aztec-nr/aztec/src/messages/processing

noir-projects/aztec-nr/aztec/src/messages/processing/mod.nr

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,9 @@ pub(crate) unconstrained fn get_pending_partial_notes_completion_logs(
164164
) -> EphemeralArray<Option<LogRetrievalResponse>> {
165165
let log_retrieval_requests = EphemeralArray::at(LOG_RETRIEVAL_REQUESTS_ARRAY_BASE_SLOT);
166166

167-
// We create a LogRetrievalRequest for each PendingPartialNote in the EphemeralArray. Because we need the indices in
168-
// the request array to match the indices in the partial note array, we can't use EphemeralArray::for_each, as that
167+
// We create a LogRetrievalRequest for each PendingPartialNote in the EphemeralArray. Because we need the indices
168+
// in the request array to match the indices in the partial note array, we can't use EphemeralArray::for_each, as
169+
// that
169170
// function has arbitrary iteration order. Instead, we manually iterate the array from the beginning and push into
170171
// the requests array, which we expect to be empty.
171172
let mut i = 0;

0 commit comments

Comments
 (0)