Skip to content

Commit

Permalink
improved CS after CR
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofwedrowicz committed Jun 4, 2019
1 parent 8017d19 commit ec77e18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/Oracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract Oracle is Authorizable {
trustedServer = _trustedServer;
}

function request(string memory _url) public onlyAuthorized() returns(bytes32 id) {
function request(string memory _url) public onlyAuthorized returns(bytes32 id) {
id = keccak256(abi.encodePacked(_url, msg.sender, now));
pendingRequests[id].requestAddress = msg.sender;
pendingRequests[id].validFrom = now;
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ec77e18

Please sign in to comment.