This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity 0.5.12; | |
import "./Moloch.sol"; | |
contract MolochActor { | |
bytes4 public constant ACTOR_MAGIC_BYTES = bytes4(keccak256("MolochActor")); | |
uint256 public nonce; | |
Moloch public moloch; |