From 6370eccfbdb3e2a57729158d723d5d135d56d6c1 Mon Sep 17 00:00:00 2001 From: Sowmay Jain Date: Sun, 3 May 2020 10:58:45 +1000 Subject: [PATCH] edits --- contracts/common/stores.sol | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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