Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
balasan committed Dec 12, 2018
1 parent ea2c8ae commit 49cf647
Show file tree
Hide file tree
Showing 7 changed files with 5,870 additions and 8,510 deletions.
20 changes: 8 additions & 12 deletions .soliumrc.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"extends": "solium:recommended",
"plugins": [
"security"
],
"extends": "solium:all",
"plugins": ["security"],
"rules": {
"quotes": [
"error",
"double"
],
"indentation": [
"error",
2
]
"quotes": ["error", "double"],
"indentation": ["error", 2],
"arg-overflow": ["warning", 3],
"security/enforce-explicit-visibility": ["error"],
"security/no-block-members": ["warning"],
"security/no-inline-assembly": ["warning"]
}
}
6 changes: 4 additions & 2 deletions contracts/mocks/BondingCurveMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ pragma solidity ^0.4.18;

import "../BondingCurve.sol";

contract BondingCurveMock is BondingCurve{

contract BondingCurveMock is BondingCurve {
function BondingCurveMock(
uint256 _totalSupply,
uint32 _reserveRatio,
uint256 _gasPrice) public payable {
uint256 _gasPrice) public payable
{

reserveRatio = _reserveRatio;
totalSupply_ = _totalSupply;
Expand Down
Loading

0 comments on commit 49cf647

Please sign in to comment.