Skip to content

Commit ba3b79b

Browse files
authored
contract update
1 parent 0feaf62 commit ba3b79b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/Attestation.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ pragma solidity ^0.4.19;
22

33
contract Attestation {
44

5-
event Attest(string _entity1,string _entity2,string _type,string _data);
5+
event Attest(string indexed _type,string _data);
66

7-
function write(string _entity1,string _entity2,string _type,string _data) public returns (bool) {
8-
Attest(_entity1,_entity2,_type,_data);
7+
function write(string _type,string _data) public returns (bool) {
8+
Attest(_type,_data);
99
return true;
1010
}
1111
}

0 commit comments

Comments
 (0)