Skip to content

Commit

Permalink
fix: certora ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nisnislevi authored Oct 1, 2024
1 parent 712f1c3 commit bda1fc5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions certora/stata/harness/pool/SymbolicLendingPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,17 @@ contract SymbolicLendingPool {
) external view returns (DataTypes.ReserveData memory) {
return reserve;
}

function getConfiguration(
address asset
) external view virtual returns (DataTypes.ReserveConfigurationMap memory) {
return reserve.configuration;
}

function getVirtualUnderlyingBalance(
address asset
) external view virtual returns (uint128) {
return reserve.virtualUnderlyingBalance;
}

}

0 comments on commit bda1fc5

Please sign in to comment.