Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
placeholder committed Jun 5, 2024
1 parent a4ed459 commit e82fe37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BridgeScripts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ contract CCTPBridgeActions {
IERC20(burnToken).approve(tokenMessenger, amount);
ITokenMessenger(tokenMessenger).depositForBurn(amount, destinationDomain, mintRecipient, burnToken);
}
}
}
2 changes: 1 addition & 1 deletion src/DeFiScripts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -326,4 +326,4 @@ contract ApproveAndSwap {
// Approvals to external contracts should always be reset to 0
IERC20(sellToken).forceApprove(to, 0);
}
}
}
2 changes: 1 addition & 1 deletion test/CCTPBridgeActions.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ contract CCTPBridge is Test {
ScriptType.ScriptSource
);
(uint8 v, bytes32 r, bytes32 s) = new SignatureHelper().signOp(alicePrivateKey, wallet, op);

assertEq(IERC20(USDC).balanceOf(address(wallet)), 1_000_000e6);
vm.resumeGasMetering();
wallet.executeQuarkOperation(op, v, r, s);
Expand Down

0 comments on commit e82fe37

Please sign in to comment.