This commit is contained in:
Sowmay Jain 2020-05-03 10:58:45 +10:00
parent f448507b97
commit 6370eccfbd

View File

@ -46,13 +46,6 @@ contract Stores {
if (setId != 0) MemoryInterface(getMemoryAddr()).setUint(setId, val);
}
/**
* @dev Connector Details
*/
function connectorID() public pure returns(uint model, uint id) {
(model, id) = (0, 0);
}
/**
* @dev emit event on event contract
*/
@ -61,4 +54,11 @@ contract Stores {
EventInterface(getEventAddr()).emitEvent(model, id, eventCode, eventData);
}
/**
* @dev Connector Details - needs to be changed before deployment
*/
function connectorID() public pure returns(uint model, uint id) {
(model, id) = (0, 0);
}
}