feat: update fluid tests

This commit is contained in:
Shriya Tyagi 2024-02-20 01:49:42 +04:00
parent a4d8191c89
commit bcc7bbfd15
2 changed files with 1 additions and 3 deletions

View File

@ -34,8 +34,6 @@ interface IVault {
uint8 supplyDecimals;
uint8 borrowDecimals;
uint vaultId;
bytes32 liquidityTotalSupplySlot;
bytes32 liquidityTotalBorrowSlot;
bytes32 liquiditySupplyExchangePriceSlot;
bytes32 liquidityBorrowExchangePriceSlot;
bytes32 liquidityUserSupplySlot;

View File

@ -256,5 +256,5 @@ abstract contract FluidConnector is Events, Stores {
}
contract ConnectV2Fluid is FluidConnector {
string public constant name = "Fluid-v1.0";
string public constant name = "Fluid-v1.1";
}