Update Prettier Solidity (#3898)

This commit is contained in:
Francisco
2022-12-23 22:28:05 -03:00
committed by GitHub
parent 4072e853fe
commit b709eae01d
103 changed files with 419 additions and 1167 deletions

View File

@ -108,12 +108,7 @@ contract SampleFather is Initializable, SampleGramps {
contract SampleChild is Initializable, SampleMother, SampleFather {
uint256 public child;
function initialize(
uint256 _mother,
string memory _gramps,
uint256 _father,
uint256 _child
) public initializer {
function initialize(uint256 _mother, string memory _gramps, uint256 _father, uint256 _child) public initializer {
__SampleChild_init(_mother, _gramps, _father, _child);
}