@@ -11,10 +11,10 @@ import {CircleSimulator} from "local-modules/circle/CircleSimulator.sol";
11
11
import {IUSDC} from "local-modules/circle/IUSDC.sol " ;
12
12
import {ICircleIntegration} from "local-modules/wormhole/ICircleIntegration.sol " ;
13
13
import {ITokenMessenger} from "src/interfaces/external/ITokenMessenger.sol " ;
14
- import {IWormhole} from "src /interfaces/external /IWormhole.sol " ;
14
+ import {IWormhole} from "wormhole-solidity-sdk /interfaces/IWormhole.sol " ;
15
15
import {SigningWormholeSimulator} from "local-modules/wormhole/WormholeSimulator.sol " ;
16
16
import {ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol " ;
17
- import {BytesParsing} from "src/shared/WormholeBytesParsing .sol " ;
17
+ import {BytesParsing} from "wormhole-solidity-sdk/libraries/BytesParsing .sol " ;
18
18
19
19
import {
20
20
IMockTokenRouter,
@@ -664,7 +664,7 @@ contract TokenRouterTest is Test {
664
664
bytes32 orderSender ,
665
665
bytes32 redeemer ,
666
666
bytes memory redeemerMessage
667
- ) public {
667
+ ) public pure {
668
668
Messages.Fill memory fill = Messages.Fill ({
669
669
sourceChain: sourceChain,
670
670
orderSender: orderSender,
@@ -694,7 +694,7 @@ contract TokenRouterTest is Test {
694
694
uint64 initAuctionFee ,
695
695
uint32 deadline ,
696
696
bytes memory redeemerMessage
697
- ) public {
697
+ ) public pure {
698
698
Messages.FastMarketOrder memory order = Messages.FastMarketOrder ({
699
699
amountIn: amountIn,
700
700
minAmountOut: minAmountOut,
@@ -1324,7 +1324,7 @@ contract TokenRouterTest is Test {
1324
1324
usdc.mint (receiver, amount);
1325
1325
}
1326
1326
1327
- function _cctpBurnLimit () internal returns (uint256 limit ) {
1327
+ function _cctpBurnLimit () internal view returns (uint256 limit ) {
1328
1328
limit = ITokenMessenger (CIRCLE_BRIDGE).localMinter ().burnLimitsPerMessage (USDC_ADDRESS);
1329
1329
1330
1330
// Having this check prevents us forking a network where Circle has not set a burn limit.
0 commit comments