mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Updates external contracts to new constructor syntax.
This commit is contained in:
committed by
Alex Beregszaszi
parent
3b1741909c
commit
95c3488a26
@@ -38,7 +38,7 @@ contract SignedMessageOracle is Oracle {
|
||||
/// @param v Signature parameter
|
||||
/// @param r Signature parameter
|
||||
/// @param s Signature parameter
|
||||
function SignedMessageOracle(bytes32 _descriptionHash, uint8 v, bytes32 r, bytes32 s)
|
||||
constructor(bytes32 _descriptionHash, uint8 v, bytes32 r, bytes32 s)
|
||||
public
|
||||
{
|
||||
signer = ecrecover(_descriptionHash, v, r, s);
|
||||
|
||||
Reference in New Issue
Block a user