Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/APIConsumer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract APIConsumer is ChainlinkClient {
bytes32 _jobId,
uint256 _fee,
address _link
) public {
) {
if (_link == address(0)) {
setPublicChainlinkToken();
} else {
Expand Down
2 changes: 1 addition & 1 deletion contracts/PriceConsumerV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract PriceConsumerV3 {
* Aggregator: ETH/USD
* Address: 0x8A753747A1Fa494EC906cE90E9f37563A8AF630e
*/
constructor(address _priceFeed) public {
constructor(address _priceFeed) {
priceFeed = AggregatorV3Interface(_priceFeed);
}

Expand Down