truffle 2=>3
This commit is contained in:
11
test/helpers/VestedTokenMock.sol
Normal file
11
test/helpers/VestedTokenMock.sol
Normal file
@ -0,0 +1,11 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
import '../../contracts/token/VestedToken.sol';
|
||||
|
||||
// mock class using StandardToken
|
||||
contract VestedTokenMock is VestedToken {
|
||||
function VestedTokenMock(address initialAccount, uint initialBalance) {
|
||||
balances[initialAccount] = initialBalance;
|
||||
totalSupply = initialBalance;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user