diff --git a/src/bazaar/SuperRareBazaarBase.sol b/src/bazaar/SuperRareBazaarBase.sol index 1779e11..a0ef197 100644 --- a/src/bazaar/SuperRareBazaarBase.sol +++ b/src/bazaar/SuperRareBazaarBase.sol @@ -136,6 +136,7 @@ abstract contract SuperRareBazaarBase is SuperRareBazaarStorage { } /// @notice Sends a payout to all the necessary parties. + /// @dev Note that _splitAddrs and _splitRatios are not checked for validity. Make sure supplied values are correct by using _checkSplits. /// @dev Sends payments to the network, royalty if applicable, and splits for the rest. /// @dev Forwards payments to the payment contract if payout is happening in eth. /// @dev Total amount of ratios should be 100 and is relative to the total ratio left. diff --git a/src/utils/MarketUtils.sol b/src/utils/MarketUtils.sol index 971fd88..1526da3 100644 --- a/src/utils/MarketUtils.sol +++ b/src/utils/MarketUtils.sol @@ -125,6 +125,7 @@ library MarketUtils { } /// @notice Sends a payout to all the necessary parties. + /// @dev Note that _splitAddrs and _splitRatios are not checked for validity. Make sure supplied values are correct by using _checkSplits. /// @dev Sends payments to the network, royalty if applicable, and splits for the rest. /// @dev Forwards payments to the payment contract if payout is happening in eth. /// @dev Total amount of ratios should be 100 and is relative to the total ratio left.