Skip to content

Commit 9e64cc7

Browse files
committed
lint: fmt
1 parent ee9a851 commit 9e64cc7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/examples/GetOut.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ contract GetOut is SignetStd {
3535
RollupOrders.Output[] memory outputs = new RollupOrders.Output[](1);
3636
outputs[0] = hostUsdcOutput(desired, msg.sender);
3737

38-
ORDERS.initiate{value: msg.value}(
38+
ORDERS.initiate{
39+
value: msg.value
40+
}(
3941
block.timestamp, // this is equivalent to no deadline
4042
inputs,
4143
outputs

src/examples/PayYou.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ abstract contract PayYou is SignetStd {
3131
RollupOrders.Input[] memory inputs = new RollupOrders.Input[](1);
3232
inputs[0] = makeInput(asset, amount);
3333

34-
ORDERS.initiate{value: amount}(
34+
ORDERS.initiate{
35+
value: amount
36+
}(
3537
block.timestamp, // no deadline
3638
inputs,
3739
new RollupOrders.Output[](0) // no outputs

0 commit comments

Comments
 (0)