Update Prettier Solidity (#3898)
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user