diff --git a/contracts/common/stores.sol b/contracts/common/stores.sol index 5e47737..0f674e5 100644 --- a/contracts/common/stores.sol +++ b/contracts/common/stores.sol @@ -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); + } + } \ No newline at end of file