mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 08:35:14 +00:00
15 lines
505 B
Solidity
15 lines
505 B
Solidity
pragma solidity >=0.5.0 <0.6.0;
|
|
|
|
/**
|
|
* @title InstanceAbstract
|
|
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
|
|
* @dev Defines instance common storage
|
|
* Important to avoid overwriting wrong storage pointers is that
|
|
* InstanceAbstract should be always the first contract at heritance.
|
|
*/
|
|
contract InstanceAbstract {
|
|
// protected zone start (InstanceAbstract vars)
|
|
InstanceAbstract public base;
|
|
// protected zone end
|
|
constructor() internal { }
|
|
} |