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

[Feature]: Instead of mapping with unit=>Details map it with address=>Details #19

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions contract/Database.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,7 @@ contract Database{
mapping( address => Details) private list;

uint256 private count=0;




mapping (string => bool) public added;


address public admin;
bool alreadyset=false;

Expand All @@ -34,14 +28,10 @@ contract Database{

}


modifier personPresent{
require(keccak256(abi.encodePacked(list[msg.sender].aadharId)) != keccak256(abi.encodePacked("")), "Person doesn't exist");
_;
}



}
modifier Added (string memory aadhar)
{
require(!added[aadhar],"Details already added");
Expand Down Expand Up @@ -94,5 +84,6 @@ contract Database{
return details;
}


}

Loading