我正在为身份识别人员创建合同,我需要验证是否有一些合同具有相同的地址、电子邮件或电话号码。
示例:
contract Person {
//date of create
uint public dateCreate;
//name of person
string public name;
//variables to be validates
string public email;
string public phone;
// constructor
function Person(string _name, string _email, string _phone) publi