Platform: Code4rena
Start Date: 07/08/2023
Pot Size: $36,500 USDC
Total HM: 11
Participants: 125
Period: 3 days
Judge: alcueca
Total Solo HM: 4
Id: 274
League: ETH
Rank: 102/125
Findings: 1
Award: $4.23
🌟 Selected for report: 0
🚀 Solo Findings: 0
🌟 Selected for report: RED-LOTUS-REACH
Also found by: 0x3b, 0x4non, 0xCiphky, 0xDING99YA, 0xDetermination, 0xE1, 0xG0P1, 0xStalin, 0xWaitress, 0xbrett8571, 0xhacksmithh, 0xkazim, 0xmuxyz, 0xweb3boy, 14si2o_Flint, AlexCzm, Alhakista, Bube, Bughunter101, Deekshith99, Eeyore, Giorgio, HChang26, InAllHonesty, JP_Courses, KmanOfficial, MatricksDeCoder, Mike_Bello90, MrPotatoMagic, Naubit, QiuhaoLi, RHaO-sec, Raihan, Rolezn, SUPERMAN_I4G, Shubham, Silverskrrrt, Strausses, T1MOH, Topmark, Tripathi, Watermelon, _eperezok, aakansha, auditsea, audityourcontracts, ayden, carlos__alegre, castle_chain, cducrest, ch0bu, d23e, deadrxsezzz, deth, devival, erebus, fatherOfBlocks, halden, hassan-truscova, hpsb, hunter_w3b, imkapadia, immeas, jat, kaden, kaveyjoe, klau5, koxuan, kutugu, ladboy233, lanrebayode77, leasowillow, lsaudit, markus_ether, matrix_0wl, merlin, nemveer, ni8mare, nonseodion, oakcobalt, owadez, p_crypt0, pipidu83, piyushshukla, popular00, ppetrov, rjs, sandy, sl1, supervrijdag, tay054, thekmj, wahedtalash77, windhustler, zhaojie
4.2289 USDC - $4.23
https://github.com/code-423n4/2023-08-verwa/blob/main/src/GaugeController.sol#L69-L83 https://github.com/code-423n4/2023-08-verwa/blob/main/src/GaugeController.sol#L95-L109
If gas limit is reached transaction will revert
There are two for
loops in GaugeController.sol
contract that iterate 500 times, and since they are writing to a state variables there is a potential that they will reach gas limit and revert.
69 for (uint256 i; i < 500; ++i) { 70 if (t > block.timestamp) break; 71 t += WEEK; 72 uint256 d_bias = pt.slope * WEEK; 73 if (pt.bias > d_bias) { 74 pt.bias -= d_bias; 75 uint256 d_slope = changes_sum[t]; 76 pt.slope -= d_slope; 77 } else { 78 pt.bias = 0; 79 pt.slope = 0; 80 } 81 points_sum[t] = pt; 82 if (t > block.timestamp) time_sum = t; 83 }
https://github.com/code-423n4/2023-08-verwa/blob/main/src/GaugeController.sol#L69-L83 https://github.com/code-423n4/2023-08-verwa/blob/main/src/GaugeController.sol#L95-L109
Manual review
Reduce the number of iteration in loop, and iterate in batches.
Invalid Validation
#0 - 141345
2023-08-12T09:28:41Z
#1 - c4-pre-sort
2023-08-12T09:38:31Z
141345 marked the issue as duplicate of #160
#2 - c4-judge
2023-08-24T05:47:59Z
alcueca marked the issue as unsatisfactory: Insufficient proof
#3 - c4-judge
2023-08-28T14:32:01Z
alcueca changed the severity to QA (Quality Assurance)
#4 - c4-judge
2023-08-28T14:32:32Z
alcueca marked the issue as grade-b