minor changes in readme

This commit is contained in:
Thrilok Kumar 2020-05-02 03:18:02 +05:30
parent c351f183d7
commit e0f478c942

View File

@ -85,7 +85,7 @@ contract Sample {
* @dev Connector Details. DSA team will set the ID at the time of deployment.
*/
function connectorID() public pure returns(uint _type, uint _id) {
(_type, _id) = (1, 3);
(_type, _id) = (1, 0);
}
/**
* @dev Return InstaEvent Address.
@ -94,6 +94,9 @@ contract Sample {
return 0x2af7ea6Cb911035f3eb1ED895Cb6692C39ecbA97; // InstaEvent Address
}
// Smaple Event
event LogDeposit(address indexed token, address cToken, uint256 tokenAmt, uint256 getId, uint256 setId);
/**
* @dev Sample function
*/