brownie
brownie copied to clipboard
Error : Multiple networks using ID 'fork-mainnet'
Environment information
I installed brownie with : pip install eth-brownie
- Python 3.10.6
- OS: 12.0.1
What was wrong?
- I ran
brownie init
/brownie
/brownie networks list
Error :
sounds like you might have made a brownie network with the 'fork-mainnet' ID, try removing any other networks other than the original mainnet-fork
try
$ brownie networks list
you can see which networks you have, most of these are there by default.
$ brownie networks remove fork-mainnet
you can also use $ brownie network --help
https://eth-brownie.readthedocs.io/en/stable/network-management.html
duplicate of #1603