第二遍走查 snapshot3

This commit is contained in:
mingda
2020-11-30 00:04:57 +08:00
parent 544b4c7c29
commit 898c5c0fb4
4 changed files with 53 additions and 16 deletions

View File

@@ -25,6 +25,13 @@ contract DPPVault is DPPStorage {
event Reset();
// ============ View Functions ============
function getVaultReserve() external view returns (uint256 baseReserve, uint256 quoteReserve) {
baseReserve = _BASE_RESERVE_;
quoteReserve = _QUOTE_RESERVE_;
}
// ============ Get Input ============
function getBaseInput() public view returns (uint256 input) {