Skip to content

Commit

Permalink
BFT-504: Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
aakoshh committed Aug 27, 2024
1 parent 97ad7e8 commit bf70159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l1-contracts/deploy-scripts/DeployL2Contracts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -244,15 +244,15 @@ contract DeployL2Script is Script {
config.consensusRegistryOwner
);

bytes memory consensusRgistryProxyConstructorData = abi.encode(
bytes memory consensusRegistryProxyConstructorData = abi.encode(
config.consensusRegistryImplementation, // _logic
l2GovernorAddress, // admin_
proxyInitializationParams // _data
);

config.consensusRegistryProxy = Utils.deployThroughL1({
bytecode: contracts.consensusRegistryProxyBytecode,
constructorargs: consensusRgistryProxyConstructorData,
constructorargs: consensusRegistryProxyConstructorData,
create2salt: "",
l2GasLimit: Utils.MAX_PRIORITY_TX_GAS,
factoryDeps: new bytes[](0),
Expand Down

0 comments on commit bf70159

Please sign in to comment.