We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 712f1c3 commit bda1fc5Copy full SHA for bda1fc5
certora/stata/harness/pool/SymbolicLendingPool.sol
@@ -86,4 +86,17 @@ contract SymbolicLendingPool {
86
) external view returns (DataTypes.ReserveData memory) {
87
return reserve;
88
}
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
98
+ ) external view virtual returns (uint128) {
99
+ return reserve.virtualUnderlyingBalance;
100
101
102
0 commit comments