Platform: Code4rena
Start Date: 13/01/2022
Pot Size: $75,000 USDC
Total HM: 9
Participants: 27
Period: 7 days
Judge: leastwood
Total Solo HM: 5
Id: 73
League: ETH
Rank: 11/27
Findings: 1
Award: $919.30
🌟 Selected for report: 0
🚀 Solo Findings: 0
1.4926 LPT - $55.34
152.2025 USDC - $152.20
danb
https://github.com/livepeer/arbitrum-lpt-bridge/blob/main/contracts/L1/gateway/L1Migrator.sol#L523
if the signature length is zero, recoverSigner will return 0, however it should revert:
remove the zero-length check
#0 - yondonfu
2022-01-23T00:44:10Z
5.1186 LPT - $189.80
521.9563 USDC - $521.96
danb
https://github.com/livepeer/arbitrum-lpt-bridge/blob/main/contracts/L2/pool/DelegatorPool.sol#L60
require( claimedInitialStake < initialStake, "DelegatorPool#claim: FULLY_CLAIMED" );
this check is wrong, it should be:
require( claimedInitialStake + _stake < initialStake, "DelegatorPool#claim: FULLY_CLAIMED" );
#0 - yondonfu
2022-01-23T20:33:54Z