You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
295 B
16 lines
295 B
7 years ago
|
pragma solidity ^0.4.13;
|
||
|
|
||
|
|
||
|
import '../token/ERC827.sol';
|
||
|
|
||
|
|
||
|
// mock class using ERC827 Token
|
||
|
contract ERC827TokenMock is ERC827 {
|
||
|
|
||
|
function ERC827TokenMock(address initialAccount, uint256 initialBalance) {
|
||
|
balances[initialAccount] = initialBalance;
|
||
|
totalSupply = initialBalance;
|
||
|
}
|
||
|
|
||
|
}
|