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 there is no indication if a manually specified deployment overrides deployments in the Truffle artifact. Add support in code generation and the proc macro to specify if it should be an error or allowed. The current working idea is:
5777! => "0x..." // override network ID 5777 even if it is in the contract.
5777? => "0x..." // Use as a backup if it is not in the contract.
5777 => "0x..." // error if already exists in contract and is a different address.
The text was updated successfully, but these errors were encountered:
Currently there is no indication if a manually specified deployment overrides deployments in the Truffle artifact. Add support in code generation and the proc macro to specify if it should be an error or allowed. The current working idea is:
The text was updated successfully, but these errors were encountered: