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

@ -14,15 +14,7 @@ contract CheckpointsMock {
return _totalCheckpoints.latest();
}
function latestCheckpoint()
public
view
returns (
bool,
uint256,
uint256
)
{
function latestCheckpoint() public view returns (bool, uint256, uint256) {
return _totalCheckpoints.latestCheckpoint();
}
@ -52,15 +44,7 @@ contract Checkpoints224Mock {
return _totalCheckpoints.latest();
}
function latestCheckpoint()
public
view
returns (
bool,
uint32,
uint224
)
{
function latestCheckpoint() public view returns (bool, uint32, uint224) {
return _totalCheckpoints.latestCheckpoint();
}
@ -90,15 +74,7 @@ contract Checkpoints160Mock {
return _totalCheckpoints.latest();
}
function latestCheckpoint()
public
view
returns (
bool,
uint96,
uint160
)
{
function latestCheckpoint() public view returns (bool, uint96, uint160) {
return _totalCheckpoints.latestCheckpoint();
}