Skip to content

Commit 179a78a

Browse files
committed
Moved variable to storage contract
1 parent d692905 commit 179a78a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/datastore/DataStoreProxy.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ import "./DataStoreStorage.sol";
88
*/
99
contract DataStoreProxy is DataStoreStorage, Proxy {
1010

11-
// Address of the current implementation
12-
address internal __implementation;
13-
1411
/**
1512
* @notice Constructor
1613
* @param _securityToken Address of the security token

contracts/datastore/DataStoreStorage.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ pragma solidity ^0.5.0;
33
import "../interfaces/ISecurityToken.sol";
44

55
contract DataStoreStorage {
6+
// Address of the current implementation
7+
address internal __implementation;
8+
69
ISecurityToken public securityToken;
710

811
mapping (bytes32 => uint256) internal uintData;

0 commit comments

Comments
 (0)