Skip to content

Commit d68dc67

Browse files
PepePepe
authored andcommitted
format to pass fmt
1 parent f34bb34 commit d68dc67

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/protocol/ERC20Bridge.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ import {IERC20Bridge} from "./IERC20Bridge.sol";
55
import {ISignalService} from "./ISignalService.sol";
66

77
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
8-
import {ReentrancyGuardTransient} from "@openzeppelin/contracts/utils/ReentrancyGuardTransient.sol";
8+
99
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
10+
import {ReentrancyGuardTransient} from "@openzeppelin/contracts/utils/ReentrancyGuardTransient.sol";
1011

1112
/// @dev In contrast to the `SignalService`, this contract does not expect the bridge to be deployed on the same
1213
/// address on both chains. This is because it is designed so that each rollup has its own independent bridge contract,
1314
/// and they may furthermore decide to deploy a new version of the bridge in the future.
1415
contract ERC20Bridge is IERC20Bridge, ReentrancyGuardTransient {
1516
using SafeERC20 for IERC20;
17+
1618
mapping(bytes32 id => bool processed) private _processed;
1719

1820
/// Incremental nonce to generate unique deposit IDs.

0 commit comments

Comments
 (0)