Skip to content
Prev Previous commit
Next Next commit
fix: linting errors
  • Loading branch information
shrugs committed Sep 4, 2018
commit cc339697c6cb728d02f669c7c7f7abdf594111a4
1 change: 1 addition & 0 deletions contracts/bounties/BreakInvariantBounty.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pragma solidity ^0.4.24;
import "../payment/PullPayment.sol";
import "../ownership/Ownable.sol";


/**
* @title BreakInvariantBounty
* @dev This bounty will pay out to a researcher if they break invariant logic of the contract.
Expand Down
1 change: 1 addition & 0 deletions contracts/token/ERC721/ERC721Burnable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pragma solidity ^0.4.24;

import "./ERC721.sol";


contract ERC721Burnable is ERC721 {
function burn(uint256 _tokenId)
public
Expand Down
1 change: 0 additions & 1 deletion test/token/ERC721/ERC721.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const {
const {
shouldSupportInterfaces,
} = require('../../introspection/SupportsInterface.behavior');
const _ = require('lodash');

const BigNumber = web3.BigNumber;
const ERC721 = artifacts.require('ERC721Mock.sol');
Expand Down
3 changes: 0 additions & 3 deletions test/token/ERC721/ERC721Basic.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
const { shouldBehaveLikeERC721Basic } = require('./ERC721Basic.behavior');
const {
shouldBehaveLikeMintAndBurnERC721,
} = require('./ERC721MintBurn.behavior');

const BigNumber = web3.BigNumber;
const ERC721Basic = artifacts.require('ERC721BasicMock.sol');
Expand Down
1 change: 1 addition & 0 deletions test/token/ERC721/ERC721Full.behavior.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const { assertRevert } = require('../../helpers/assertRevert');
const _ = require('lodash');

const firstTokenId = 100;
const secondTokenId = 200;
Expand Down