We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d692905 commit 179a78aCopy full SHA for 179a78a
contracts/datastore/DataStoreProxy.sol
@@ -8,9 +8,6 @@ import "./DataStoreStorage.sol";
8
*/
9
contract DataStoreProxy is DataStoreStorage, Proxy {
10
11
- // Address of the current implementation
12
- address internal __implementation;
13
-
14
/**
15
* @notice Constructor
16
* @param _securityToken Address of the security token
contracts/datastore/DataStoreStorage.sol
@@ -3,6 +3,9 @@ pragma solidity ^0.5.0;
3
import "../interfaces/ISecurityToken.sol";
4
5
contract DataStoreStorage {
6
+ // Address of the current implementation
7
+ address internal __implementation;
+
ISecurityToken public securityToken;
mapping (bytes32 => uint256) internal uintData;
0 commit comments