chore: simplify network monitor counter script#1957
Open
SantiagoPittella wants to merge 1 commit intomainfrom
Open
chore: simplify network monitor counter script#1957SantiagoPittella wants to merge 1 commit intomainfrom
SantiagoPittella wants to merge 1 commit intomainfrom
Conversation
218982c to
a86848d
Compare
igamigo
approved these changes
Apr 17, 2026
Comment on lines
886
to
-887
| let script_builder = CodeBuilder::new() | ||
| .with_dynamically_linked_library(&library) |
Collaborator
There was a problem hiding this comment.
To give some more context (correct me if I'm wrong @SantiagoPittella), this was failing due to 0xMiden/miden-vm#2986, as this CodeBuilder was not sharing the same source manager as the library. On Linux for some reason this is not failing (which is why the monitor did not show errors AFAIK) but when testing this locally on MacOS it would panic cc @bitwalker
Collaborator
Author
There was a problem hiding this comment.
Yes, this is correct.
Collaborator
Author
There was a problem hiding this comment.
(and regarding the review comment above this, I will add it to the existing issue of improvements)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Due to upstream changes, and considering that we are about to do a new release, this PR adds a simplification to the counter creation and fixes the source manager handling following the changes from 0xMiden/miden-client#2006