2018-05-13 05:47:51 +00:00
|
|
|
pragma solidity ^0.4.23;
|
2018-03-11 15:12:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @title InstanceStorage
|
|
|
|
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
|
|
|
|
* @dev Defines kernel vars that Kernel contract share with Instance.
|
|
|
|
* Important to avoid overwriting wrong storage pointers is that
|
|
|
|
* InstanceStorage should be always the first contract at heritance.
|
|
|
|
*/
|
|
|
|
contract InstanceStorage {
|
|
|
|
// protected zone start (InstanceStorage vars)
|
|
|
|
address public kernel;
|
|
|
|
// protected zone end
|
2018-05-13 05:47:51 +00:00
|
|
|
constructor() internal { }
|
2018-03-11 15:12:50 +00:00
|
|
|
}
|