Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhniuk committed Dec 23, 2024
1 parent 62f7390 commit a1dfa8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/payment/SponsorPayment.sol
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ contract SponsorPayment is ReentrancyGuardUpgradeable, EIP712Upgradeable, Ownabl
struct SponsorPaymentStorage {
mapping(address => mapping(address => uint256)) balances; // sponsor => token => balance
mapping(address => mapping(address => WithdrawalRequest)) withdrawalRequests; // sponsor => token => request
mapping(bytes32 => bool) isWithdrawn;
mapping(bytes32 => bool) isWithdrawn; // requestId => isWithdrawn
uint8 ownerPercentage;
uint256 withdrawalDelay;
}
Expand Down

0 comments on commit a1dfa8e

Please sign in to comment.