You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when I run brownie console, it recompiles all the contracts. Apparently due to some issue which is not identified.
I only want to compile once with brownie compile -all. That's it.
I work on the frontend side, I don't modify the contracts, I just need a local fork and run some scripts.
Currently it's slow as hell to work because depending on the network, the fork dies quickly. Skipping the compilation step would help speed things up.
Specification
I'd like some flag / CLI arguments that would tell brownie console to run with the currently compiled contracts and not even attempt to recompile.
Something like brownie console --no-compile
The text was updated successfully, but these errors were encountered:
This is a good idea. Similar to how Hardhat's console has a --no-compile flag. I'm testing scripts and running them back to back, and re-compiling each time slows things down a bit.
Overview
Currently when I run brownie console, it recompiles all the contracts. Apparently due to some issue which is not identified.
I only want to compile once with
brownie compile -all
. That's it.I work on the frontend side, I don't modify the contracts, I just need a local fork and run some scripts.
Currently it's slow as hell to work because depending on the network, the fork dies quickly. Skipping the compilation step would help speed things up.
Specification
I'd like some flag / CLI arguments that would tell brownie console to run with the currently compiled contracts and not even attempt to recompile.
Something like
brownie console --no-compile
The text was updated successfully, but these errors were encountered: