Skip to content

Commit fc63a37

Browse files
committed
fix: dev accounts should be funded for testnet still
1 parent 6057b58 commit fc63a37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/contracts/contract_deployer.star

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ def deploy_contracts(
183183
"eip1559Elasticity": int(chain.gas_params.eip_1559_elasticity),
184184
"deployOverrides": {
185185
"l2BlockTime": chain.network_params.seconds_per_slot,
186-
"fundDevAccounts": True if devnet else False,
186+
"fundDevAccounts": True
187+
if chain.network_params.fund_dev_accounts
188+
else False,
187189
"l2GenesisBlockGasLimit": "0x17D7840",
188190
"gasPriceOracleBaseFeeScalar": chain.gas_params.base_fee_scalar,
189191
"gasPriceOracleBlobBaseFeeScalar": chain.gas_params.blob_base_fee_scalar,

0 commit comments

Comments
 (0)