Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: Insurance check patterns for Insurance.sol #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

saibaneer
Copy link

@saibaneer saibaneer commented Jan 31, 2024

Hi! I reviewed the Insurance.sol contract and found the following issues within the issueInsurance function.

  1. The insurance amount was not checked to reject 0 amounts. I ran a test, and the issueInsurance function will pass if the amount is zero, thereby creating a dud policy. You don't want this outcome, as it is unhandled.
  2. To avoid collision I added the block.timestamp, you can ALSO use a universal nonce or block number.
    policyId = keccak256(abi.encode(insuredEvent, payoutAddress, block.timestamp));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant