Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion contracts/interfaces/ICoverProducts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ struct ProductInitializationParams {

struct Product {
uint16 productType;
address yieldTokenAddress;
uint16 minPrice;
// leftover memory gap from the previously used address field yieldTokenAddress
uint144 __gap;
// cover assets bitmap. each bit represents whether the asset with
// the index of that bit is enabled as a cover asset for this product
uint32 coverAssets;
Expand Down
6 changes: 3 additions & 3 deletions contracts/interfaces/IMasterAwareV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ interface IMasterAwareV2 {
SP, // StakingProducts.sol
PS, // LegacyPooledStaking.sol
GV, // Governance.sol
GW, // LegacyGateway.sol - removed
CL, // CoverMigrator.sol - removed
UNUSED_GW, // LegacyGateway.sol - removed
UNUSED_CL, // CoverMigrator.sol - removed
AS, // Assessment.sol
CI, // IndividualClaims.sol - Claims for Individuals
CG, // YieldTokenIncidents.sol - Claims for Groups
UNUSED_CG, // YieldTokenIncidents.sol - Claims for Groups -- removed
RA, // Ramm.sol
ST, // SafeTracker.sol
CP // CoverProducts.sol
Expand Down
102 changes: 0 additions & 102 deletions contracts/interfaces/IYieldTokenIncidents.sol

This file was deleted.

36 changes: 0 additions & 36 deletions contracts/mocks/generic/YieldTokenIncidentsGeneric.sol

This file was deleted.

51 changes: 0 additions & 51 deletions contracts/mocks/modules/Assessment/ASMockYieldTokenIncidents.sol

This file was deleted.

Loading