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.
21 lines
468 B
21 lines
468 B
pragma solidity ^0.4.11;
|
|
|
|
import './StandardToken.sol';
|
|
import '../lifecycle/Pausable.sol';
|
|
|
|
/**
|
|
* Pausable token
|
|
*
|
|
* Simple ERC20 Token example, with pausable token creation
|
|
**/
|
|
|
|
contract PausableToken is StandardToken, Pausable {
|
|
|
|
function transfer(address _to, uint _value) whenNotPaused {
|
|
super.transfer(_to, _value);
|
|
}
|
|
|
|
function transferFrom(address _from, address _to, uint _value) whenNotPaused {
|
|
super.transferFrom(_from, _to, _value);
|
|
}
|
|
}
|
|
|