mirror of
https://github.com/status-im/gitpivot.git
synced 2026-08-27 16:41:08 +00:00
16 lines
446 B
Solidity
16 lines
446 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
|
|
/**
|
|
* @title BasicSystemStorage
|
|
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
|
|
* @dev Defines system vars in a shared library among Stub and SystemLibraries to
|
|
* avoid overwriting wrong storage pointers
|
|
*/
|
|
contract BasicSystemStorage {
|
|
/// protected zone start (RecorverableSystem vars)
|
|
address system;
|
|
address recover;
|
|
address watchdog;
|
|
/// protected zone end
|
|
} |