Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
Signed-off-by: bennett <[email protected]>
  • Loading branch information
bmzig committed Dec 25, 2024
1 parent 16a21a0 commit cb96815
Show file tree
Hide file tree
Showing 7 changed files with 223 additions and 215 deletions.
4 changes: 2 additions & 2 deletions contracts/MockAtomicWethDepositor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.8.0;
contract MockAtomicWethDepositor {
event AtomicWethDepositInitiated(address indexed from, uint256 indexed chainId, uint256 amount);

function bridgeWeth(uint256 chainId, uint256 amount, bytes calldata) public {
emit AtomicWethDepositInitiated(msg.sender, chainId, amount);
function bridgeWeth(uint256 chainId, uint256 netAmount, uint256 bridgeAmount, bytes calldata) public {
emit AtomicWethDepositInitiated(msg.sender, chainId, bridgeAmount);
}
}
2 changes: 1 addition & 1 deletion deployments/mainnet/AtomicWethDepositor.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,9 @@
"viaIR": true,
"outputSelection": {
"*": {
"*": [
"abi",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"metadata"
],
"": [
"ast"
]
"*": ["abi", "evm.bytecode", "evm.deployedBytecode", "evm.methodIdentifiers", "metadata"],
"": ["ast"]
}
}
}
}
}
Loading

0 comments on commit cb96815

Please sign in to comment.