Skip to content

Commit f8354ba

Browse files
committed
chore: styling change reverted
1 parent 18dae17 commit f8354ba

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

contracts/src/EscrowView.sol

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,9 @@ contract EscrowView {
2727
function getPayoutMessages(
2828
uint256 _transactionID
2929
) external view returns (string memory noWinner, string memory buyerWins, string memory sellerWins) {
30-
(
31-
,
32-
,
33-
uint256 amount,
34-
,
35-
,
36-
,
37-
,
38-
uint256 buyerFee,
39-
uint256 sellerFee,
40-
,
41-
,
42-
IERC20 token
43-
) = escrow.transactions(_transactionID);
30+
(, , uint256 amount, , , , , uint256 buyerFee, uint256 sellerFee, , , IERC20 token) = escrow.transactions(
31+
_transactionID
32+
);
4433

4534
(uint256 noWinnerPayout, uint256 noWinnerPayoutToken, , ) = escrow.getPayouts(_transactionID, Party.None);
4635
(, , uint256 buyerWinsCost, uint256 buyerWinsCostToken) = escrow.getPayouts(_transactionID, Party.Buyer);

0 commit comments

Comments
 (0)