Skip to content

Commit bda1fc5

Browse files
authored
fix: certora ci fix
1 parent 712f1c3 commit bda1fc5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

certora/stata/harness/pool/SymbolicLendingPool.sol

+13
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,17 @@ contract SymbolicLendingPool {
8686
) external view returns (DataTypes.ReserveData memory) {
8787
return reserve;
8888
}
89+
90+
function getConfiguration(
91+
address asset
92+
) external view virtual returns (DataTypes.ReserveConfigurationMap memory) {
93+
return reserve.configuration;
94+
}
95+
96+
function getVirtualUnderlyingBalance(
97+
address asset
98+
) external view virtual returns (uint128) {
99+
return reserve.virtualUnderlyingBalance;
100+
}
101+
89102
}

0 commit comments

Comments
 (0)