File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments