aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/token/PausableToken.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/compilationTests/zeppelin/token/PausableToken.sol')
-rw-r--r--test/compilationTests/zeppelin/token/PausableToken.sol21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/compilationTests/zeppelin/token/PausableToken.sol b/test/compilationTests/zeppelin/token/PausableToken.sol
deleted file mode 100644
index 66f80b80..00000000
--- a/test/compilationTests/zeppelin/token/PausableToken.sol
+++ /dev/null
@@ -1,21 +0,0 @@
-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) public whenNotPaused {
- super.transfer(_to, _value);
- }
-
- function transferFrom(address _from, address _to, uint _value) public whenNotPaused {
- super.transferFrom(_from, _to, _value);
- }
-}