mirror of
https://github.com/status-im/contracts.git
synced 2025-02-22 11:38:49 +00:00
reorder imports and inheritance
This commit is contained in:
parent
b499627b38
commit
c9503b4589
@ -1,11 +1,12 @@
|
|||||||
pragma solidity >=0.5.0 <0.6.0;
|
pragma solidity >=0.5.0 <0.6.0;
|
||||||
import "../common/MessageSigned.sol";
|
|
||||||
import "../common/Controlled.sol";
|
import "../common/Controlled.sol";
|
||||||
|
import "../common/MessageSigned.sol";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @notice Defines tribute to talk
|
* @notice Defines tribute to talk
|
||||||
*/
|
*/
|
||||||
contract MessageTribute is MessageSigned, Controlled {
|
contract MessageTribute is Controlled, MessageSigned {
|
||||||
event SetTribute(address indexed account, uint256 value);
|
event SetTribute(address indexed account, uint256 value);
|
||||||
bool public stopped;
|
bool public stopped;
|
||||||
mapping(address => uint256) tributeCatalog;
|
mapping(address => uint256) tributeCatalog;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user