Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions l1-contracts/deploy-scripts/ContractsBytecodesLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ library ContractsBytecodesLib {
"EIP7702Checker"
];

uint256 DA_CONTRACT_IDENTIFIERS_LENGTH = EVM_CONTRACT_IDENTIFIERS.length;
for (uint i = 0; i < DA_CONTRACT_IDENTIFIERS_LENGTH; i++) {
uint256 EVM_CONTRACT_IDENTIFIERS_LENGTH = EVM_CONTRACT_IDENTIFIERS.length;
for (uint i = 0; i < EVM_CONTRACT_IDENTIFIERS_LENGTH; i++) {
if (Utils.compareStrings(EVM_CONTRACT_IDENTIFIERS[i], contractIdentifier)) {
return Utils.readDAContractBytecode(contractIdentifier);
}
Expand Down
Loading