Skip to content

Commit

Permalink
lint: run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Jan 14, 2024
1 parent 3126ab4 commit 59e7773
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 1 addition & 5 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ contract GetProofMockScript is Script {
AvailBridge bridge = AvailBridge(address(new TransparentUpgradeableProxy(impl, address(proxyAdmin), "")));
WrappedAvail avail = new WrappedAvail(address(bridge));
bridge.initialize(
0,
IWrappedAvail(address(avail)),
admin,
admin,
IVectorx(0x5ac10644a873AAcd288775A90d6D0303496A4304)
0, IWrappedAvail(address(avail)), admin, admin, IVectorx(0x5ac10644a873AAcd288775A90d6D0303496A4304)
);
vm.stopBroadcast();
}
Expand Down
4 changes: 3 additions & 1 deletion test/AvailBridgeTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ contract AvailBridgeTest is Test, MurkyBase {
assertEq(bridge.isSent(0), 0x0);
}

function testRevertFeeTooLow_sendMessage(bytes32 to, bytes calldata data, uint32 feePerByte, uint256 amount) external {
function testRevertFeeTooLow_sendMessage(bytes32 to, bytes calldata data, uint32 feePerByte, uint256 amount)
external
{
vm.assume(feePerByte != 0 && data.length != 0 && data.length < 102_400);
vm.prank(owner);
bridge.updateFeePerByte(feePerByte);
Expand Down

0 comments on commit 59e7773

Please sign in to comment.