From 103c4f0176c12999615ee7ee75737eac79730fa9 Mon Sep 17 00:00:00 2001 From: albert Date: Sat, 24 Feb 2024 07:45:11 +0100 Subject: [PATCH] chore: add spam after deployment l2 --- scripts/deploy_contracts.py | 5 +++++ 1 file changed, 5 insertions(+) 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):