Skip to content

Commit

Permalink
Remove double initializer in ERC721CoreInitializable (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquim-verges authored Sep 5, 2024
1 parent ac47ad0 commit 21bf8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/token/ERC721CoreInitializable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract ERC721CoreInitializable is ERC721Base, Initializable {
address _owner,
address[] memory _modules,
bytes[] memory _moduleInstallData
) external payable initializer initializerERC721A {
) external payable initializer {
_initialize(_name, _symbol, _contractURI, _owner, _modules, _moduleInstallData);
}

Expand Down

0 comments on commit 21bf8d8

Please sign in to comment.