Skip to content

Commit 15989d9

Browse files
committed
fix: style-related comments
1 parent af5c888 commit 15989d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/bridges/aceofzk/AceOfZkBridge.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ contract AceOfZkBridge is IDefiBridge {
3333
external
3434
payable
3535
returns (
36-
uint256 outputValueA,
3736
uint256,
38-
bool isAsync
37+
uint256,
38+
bool
3939
)
4040
{
4141
if (msg.sender != ROLLUP_PROCESSOR) {

src/test/aceofzk/AceOfZk.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ contract AceOfZkTest is Test {
5757
assertEq(outputValueA, 0, "Non zero return a");
5858
assertEq(outputValueB, 0, "Non zero return b");
5959
assertFalse(isAsync, "The convert was async");
60-
assertEq(ACE_OF_ZK_NFT.ownerOf(NFT_ID), address(rollupProcessor), "The rollup processor don't own the nft");
60+
assertEq(ACE_OF_ZK_NFT.ownerOf(NFT_ID), address(rollupProcessor), "The rollup processor does not own the nft");
6161
}
6262

6363
function testWrongCaller(address _caller) public {

0 commit comments

Comments
 (0)