Skip to content

Commit

Permalink
Rename ipfsHashStorage to VerificationStorage
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjambazov committed Aug 11, 2018
1 parent d99326a commit 6081dbc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
9 changes: 9 additions & 0 deletions contracts/VerificationStorage.sol
@@ -0,0 +1,9 @@
pragma solidity ^0.4.24;

contract VerificationStorage {
event Verification(bytes ipfsHash, address granted_to);

function verify(bytes _ipfsHash, address _grant_to) public {
emit Verification(_ipfsHash, _grant_to);
}
}
13 changes: 0 additions & 13 deletions contracts/ipfsHashStorage.sol

This file was deleted.

0 comments on commit 6081dbc

Please sign in to comment.