You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/shared/AppStorage.sol
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ struct AppStorage {
79
79
mapping(string tokenSymbol =>bytes32objectId) tokenSymbolObjectId; // reverse mapping token symbol => object ID, to ensure symbol uniqueness
80
80
mapping(bytes32 entityId =>mapping(uint256 feeScheduleTypeId => FeeSchedule)) feeSchedules; // map entity ID to a fee schedule type and then to array of FeeReceivers (feeScheduleType (1-premium, 2-trading, n-others))
81
81
mapping(bytes32 objectId =>uint256minimumSell) objectMinimumSell; // map object ID to minimum sell amount
82
-
mapping(bytes32 objectId =>uint256) depositTotal; // total amount deposited into contract, for rebasing tokens support
82
+
mapping(bytes32 objectId =>uint256) depositTotal; // note: DEPRECATED: total amount deposited into contract, for rebasing tokens support
0 commit comments