Skip to content

Commit

Permalink
fix(0.5API): remove twitter handle @ tag that confuses compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
gskapka committed Jun 24, 2019
1 parent 23a47de commit 2e00cde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oraclizeAPI_0.5.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ contract usingOraclize {
return oraclize_randomDS_sessionKeysHashVerified[sessionPubkeyHash];
}
/*
The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
*/
function copyBytes(bytes memory _from, uint _fromOffset, uint _length, bytes memory _to, uint _toOffset) internal pure returns (bytes memory _copiedBytes) {
uint minLength = _length + _toOffset;
Expand All @@ -1262,7 +1262,7 @@ contract usingOraclize {
return _to;
}
/*
The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
Duplicate Solidity's ecrecover, but catching the CALL return value
*/
function safer_ecrecover(bytes32 _hash, uint8 _v, bytes32 _r, bytes32 _s) internal returns (bool _success, address _recoveredAddress) {
Expand All @@ -1288,7 +1288,7 @@ contract usingOraclize {
return (ret, addr);
}
/*
The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
*/
function ecrecovery(bytes32 _hash, bytes memory _sig) internal returns (bool _success, address _recoveredAddress) {
bytes32 r;
Expand Down

0 comments on commit 2e00cde

Please sign in to comment.