Skip to content

Commit

Permalink
fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
nonergodic committed Aug 28, 2024
1 parent b995711 commit d5c2c21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/WormholeRelayer/TokenBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import "IERC20/IERC20.sol";
import "wormhole-sdk/interfaces/IWormholeReceiver.sol";
import "wormhole-sdk/interfaces/IWormholeRelayer.sol";
import "wormhole-sdk/interfaces/ITokenBridge.sol";

import "wormhole-sdk/Utils.sol";

import {Base} from "./Base.sol";
Expand Down
6 changes: 3 additions & 3 deletions src/interfaces/cctp/shared/IOwnable2Step.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ interface IOwnable2Step {
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

function transferOwnership(address newOwner) external;
function acceptOwnership() external;
function acceptOwnership() external;

function owner() external view returns (address);
function pendingOwner() external view returns (address);
function owner() external view returns (address);
function pendingOwner() external view returns (address);
}
4 changes: 2 additions & 2 deletions src/interfaces/cctp/shared/IPausable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface IPausable {
function paused() external view returns (bool);
function pauser() external view returns (address);

function pause() external;
function unpause() external;
function pause() external;
function unpause() external;
function updatePauser(address newPauser) external;
}

0 comments on commit d5c2c21

Please sign in to comment.