diff --git a/scripts/deploy_contracts.py b/scripts/deploy_contracts.py index 9d8efcf6..5a7cb152 100644 --- a/scripts/deploy_contracts.py +++ b/scripts/deploy_contracts.py @@ -155,6 +155,11 @@ def deploy_secondary_evm(): store_artifacts(addressDump) + # Add spam transcations + NUM_SPAM_TXS = 100 + for i in range(NUM_SPAM_TXS): + deployer.transfer(deployer, "1 ether") + # Check that all environment variables are set when deploying to a live network. def check_env_variables(env_var_names):