Add full monorepo: virtual-banker, backend, frontend, docs, scripts, deployment

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-10 11:32:49 -08:00
parent aafcd913c2
commit 88bc76da91
815 changed files with 125522 additions and 264 deletions

View File

@@ -0,0 +1,46 @@
# PriceFeedKeeper Variable Name Fix
**Date**: 2025-12-24
**Status**: ✅ Fixed
---
## 🐛 Issue
After renaming the return variable from `needsUpdate` to `updateNeeded` in `checkUpkeep()`, the code inside the function was still trying to assign to the old variable name `needsUpdate`.
**Error**:
```
Error (7576): Undeclared identifier. Did you mean "_needsUpdate" or "needsUpdate"?
--> contracts/reserve/PriceFeedKeeper.sol:104:13:
|
104 | needsUpdate = true;
| ^^^^^^^^^^^
```
---
## ✅ Fix
Changed assignments from `needsUpdate` to `updateNeeded`:
```solidity
// Before
needsUpdate = true;
needsUpdate = false;
// After
updateNeeded = true;
updateNeeded = false;
```
---
## 📋 Files Modified
- `contracts/reserve/PriceFeedKeeper.sol` (lines 104, 107)
---
**Last Updated**: 2025-12-24