add 2 lines between top level definitions
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../token/BasicToken.sol';
|
||||
|
||||
|
||||
// mock class using BasicToken
|
||||
contract BasicTokenMock is BasicToken {
|
||||
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../LimitBalance.sol';
|
||||
|
||||
|
||||
// mock class using LimitBalance
|
||||
contract LimitBalanceMock is LimitBalance(1000) {
|
||||
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../PullPayment.sol';
|
||||
|
||||
|
||||
// mock class using PullPayment
|
||||
contract PullPaymentMock is PullPayment {
|
||||
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../SafeMath.sol';
|
||||
|
||||
|
||||
contract SafeMathMock is SafeMath {
|
||||
uint public result;
|
||||
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../token/StandardToken.sol';
|
||||
|
||||
|
||||
// mock class using StandardToken
|
||||
contract StandardTokenMock is StandardToken {
|
||||
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
|
||||
import '../Stoppable.sol';
|
||||
|
||||
|
||||
// mock class using Stoppable
|
||||
contract StoppableMock is Stoppable {
|
||||
bool public drasticMeasureTaken;
|
||||
|
||||
Reference in New Issue
Block a user