File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,11 @@ contract FluiDexDemo is
136
136
/**
137
137
* @param amount the deposit amount.
138
138
*/
139
- function depositERC20 (IERC20 token , bytes32 to , uint256 amount )
139
+ function depositERC20 (
140
+ IERC20 token ,
141
+ bytes32 to ,
142
+ uint256 amount
143
+ )
140
144
external
141
145
override
142
146
nonReentrant
Original file line number Diff line number Diff line change @@ -27,17 +27,19 @@ interface IFluiDex {
27
27
/**
28
28
* @param to the L2 address (bjjPubkey) of the deposit target.
29
29
*/
30
- function depositETH (bytes32 to )
31
- external
30
+ function depositETH (bytes32 to )
31
+ external
32
32
payable
33
33
returns (uint128 realAmount );
34
34
35
35
/**
36
36
* @param amount the deposit amount.
37
37
*/
38
- function depositERC20 (IERC20 token , bytes32 to , uint256 amount )
39
- external
40
- returns (uint16 tokenId , uint128 realAmount );
38
+ function depositERC20 (
39
+ IERC20 token ,
40
+ bytes32 to ,
41
+ uint256 amount
42
+ ) external returns (uint16 tokenId , uint128 realAmount );
41
43
42
44
function getBlockStateByBlockId (uint256 _block_id )
43
45
external
You can’t perform that action at this time.
0 commit comments