-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Debugger] Debug realms during transaction execution #2683
Labels
help wanted
Want to contribute? We recommend these issues.
Milestone
Comments
After some internal discussions, a suggested flow could be the following:
Not sure if this is really feasible from the technical side; @gfanton & @mvertes can provide more details or other ways we could do this :) |
I guess it could be better to add an end flag instead of the same, no? Like end-debug. Also this allows the idea of adding several blocks of debugging in the same run. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
This is a proposal for an improvement on the GnoVM debugger. Currently the debugger is ran via
gno run
, meaning that it does not necessarily provide a way to debug functions during transaction calls.I definitely see the benefit of being able to debug during a transaction; this way, you could set a breakpoint in a function, execute a transaction, and run through the program with the debugger.
This could also be a cool way to integrate the debugger with
gnodev
, makinggnodev
even more overpowered.@mvertes, @gfanton, do you think something like this is feasible?
cc @gfant
The text was updated successfully, but these errors were encountered: