fixed pragma

This commit is contained in:
Ricardo Guilherme Schmidt
2017-05-19 20:53:45 -03:00
parent 4833c859a1
commit 8bbefacf3d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import "./Owned.sol";
pragma solidity ^0.4.8;
pragma solidity ^0.4.11;
contract Lockable {
bool public lock = true;
+2 -2
View File
@@ -1,5 +1,3 @@
pragma solidity ^0.4.0;
/**
* Abstract contract to accept lock and linked locker.
*
@@ -10,6 +8,8 @@ pragma solidity ^0.4.0;
import "./AbstractToken.sol";
import "Lockable.sol";
pragma solidity ^0.4.11;
contract LockerToken is AbstractToken, Lockable, Owned {
Lockable public locker = this;