-
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "./SimpleStorage.sol";
contract StorageFactory{
function createSimpleStorageContract() public {
SimpleStorage simpleStorage = new SimpleStorage();
}
} // is there something wrong with my code? |
Beta Was this translation helpful? Give feedback.
Answered by
cromewar
Jan 17, 2022
Replies: 2 comments 6 replies
-
Hello @shucks18 is the name you used to create the file the same as the contract name StorageFactory? |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
shucks18
-
Hi guys good morning I still having the same problem here I did renamed the folder as suggest but the Error persists Help pls |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @shucks18 is the name you used to create the file the same as the contract name StorageFactory?