mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update compilation tests.
This commit is contained in:
parent
17493e64ed
commit
e299a0031f
@ -117,7 +117,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
@id Index of module.
|
||||
@found Was there any result or not.
|
||||
*/
|
||||
bytes32 _name = keccak256(name);
|
||||
bytes32 _name = keccak256(bytes(name));
|
||||
for ( uint256 a=0 ; a<modules.length ; a++ ) {
|
||||
if ( modules[a].name == _name ) {
|
||||
return (true, true, a);
|
||||
@ -153,7 +153,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
require( _success );
|
||||
if ( ! ( _found && modules[_id].name == keccak256('Publisher') )) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModule", keccak256(name, addr, callCallback))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModule", keccak256(abi.encodePacked(name, addr, callCallback)))) ) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -169,7 +169,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
|
||||
function callReplaceCallback(string moduleName, address newModule) external returns (bool success) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("callReplaceCallback", keccak256(moduleName, newModule))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("callReplaceCallback", keccak256(abi.encodePacked(moduleName, newModule)))) ) {
|
||||
return true;
|
||||
}
|
||||
(bool _success, bool _found, uint256 _id) = getModuleIDByName(moduleName);
|
||||
@ -192,11 +192,11 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
require( _success );
|
||||
if ( ! ( _found && modules[_id].name == keccak256('Publisher') )) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("newModule", keccak256(name, addr, schellingEvent, transferEvent))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("newModule", keccak256(abi.encodePacked(name, addr, schellingEvent, transferEvent)))) ) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
addModule( modules_s(addr, keccak256(name), schellingEvent, transferEvent), true);
|
||||
addModule( modules_s(addr, keccak256(bytes(name)), schellingEvent, transferEvent), true);
|
||||
return true;
|
||||
}
|
||||
function dropModule(string name, bool callCallback) external returns (bool success) {
|
||||
@ -211,7 +211,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
require( _success );
|
||||
if ( ! ( _found && modules[_id].name == keccak256('Publisher') )) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModule", keccak256(name, callCallback))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModule", keccak256(abi.encodePacked(name, callCallback)))) ) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -226,7 +226,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
|
||||
function callDisableCallback(string moduleName) external returns (bool success) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("callDisableCallback", keccak256(moduleName))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("callDisableCallback", keccak256(bytes(moduleName)))) ) {
|
||||
return true;
|
||||
}
|
||||
(bool _success, bool _found, uint256 _id) = getModuleIDByName(moduleName);
|
||||
@ -289,7 +289,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
require( _success );
|
||||
if ( ! ( _found && modules[_id].name == keccak256('Publisher') )) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModuleHandler", keccak256(newHandler))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("replaceModuleHandler", keccak256(abi.encodePacked(newHandler)))) ) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -419,7 +419,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
require( _success );
|
||||
if ( ! ( _found && modules[_id].name == keccak256('Publisher') )) {
|
||||
require( block.number < debugModeUntil );
|
||||
if ( ! insertAndCheckDo(calcDoHash("configureModule", keccak256(moduleName, aType, value))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("configureModule", keccak256(abi.encodePacked(moduleName, aType, value)))) ) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -437,7 +437,7 @@ contract moduleHandler is multiOwner, announcementTypes {
|
||||
*/
|
||||
require( owners[msg.sender] );
|
||||
if ( forever ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("freezing", keccak256(forever))) ) {
|
||||
if ( ! insertAndCheckDo(calcDoHash("freezing", keccak256(abi.encodePacked(forever)))) ) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -21,12 +21,12 @@ contract multiOwner is safeMath {
|
||||
Externals
|
||||
*/
|
||||
function insertOwner(address addr) external {
|
||||
if ( insertAndCheckDo(calcDoHash("insertOwner", keccak256(addr))) ) {
|
||||
if ( insertAndCheckDo(calcDoHash("insertOwner", keccak256(abi.encodePacked(addr)))) ) {
|
||||
_addOwner(addr);
|
||||
}
|
||||
}
|
||||
function dropOwner(address addr) external {
|
||||
if ( insertAndCheckDo(calcDoHash("dropOwner", keccak256(addr))) ) {
|
||||
if ( insertAndCheckDo(calcDoHash("dropOwner", keccak256(abi.encodePacked(addr)))) ) {
|
||||
_delOwner(addr);
|
||||
}
|
||||
}
|
||||
@ -42,7 +42,7 @@ contract multiOwner is safeMath {
|
||||
return ownerCount * 75 / 100;
|
||||
}
|
||||
function calcDoHash(string job, bytes32 data) public constant returns (bytes32 hash) {
|
||||
return keccak256(job, data);
|
||||
return keccak256(abi.encodePacked(job, data));
|
||||
}
|
||||
function validDoHash(bytes32 doHash) public constant returns (bool valid) {
|
||||
return doDB[doHash].length > 0;
|
||||
|
@ -335,7 +335,7 @@ contract schelling is module, announcementTypes, schellingVars {
|
||||
|
||||
require( voter.status == voterStatus.afterPrepareVote );
|
||||
require( voter.roundID < currentRound );
|
||||
if ( keccak256(vote) == voter.hash ) {
|
||||
if ( keccak256(bytes(vote)) == voter.hash ) {
|
||||
delete voter.hash;
|
||||
if (round.blockHeight+roundBlockDelay/2 >= block.number) {
|
||||
if ( bytes(vote)[0] == aboveChar ) {
|
||||
|
@ -48,6 +48,6 @@ contract CategoricalEvent is Event {
|
||||
constant
|
||||
returns (bytes32)
|
||||
{
|
||||
return keccak256(collateralToken, oracle, outcomeTokens.length);
|
||||
return keccak256(abi.encodePacked(collateralToken, oracle, outcomeTokens.length));
|
||||
}
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ contract EventFactory {
|
||||
public
|
||||
returns (CategoricalEvent eventContract)
|
||||
{
|
||||
bytes32 eventHash = keccak256(collateralToken, oracle, outcomeCount);
|
||||
bytes32 eventHash = keccak256(abi.encodePacked(collateralToken, oracle, outcomeCount));
|
||||
// Event should not exist yet
|
||||
require(address(categoricalEvents[eventHash]) == address(0));
|
||||
// Create event
|
||||
@ -63,7 +63,7 @@ contract EventFactory {
|
||||
public
|
||||
returns (ScalarEvent eventContract)
|
||||
{
|
||||
bytes32 eventHash = keccak256(collateralToken, oracle, lowerBound, upperBound);
|
||||
bytes32 eventHash = keccak256(abi.encodePacked(collateralToken, oracle, lowerBound, upperBound));
|
||||
// Event should not exist yet
|
||||
require(address(scalarEvents[eventHash]) == address(0));
|
||||
// Create event
|
||||
|
@ -82,6 +82,6 @@ contract ScalarEvent is Event {
|
||||
constant
|
||||
returns (bytes32)
|
||||
{
|
||||
return keccak256(collateralToken, oracle, lowerBound, upperBound);
|
||||
return keccak256(abi.encodePacked(collateralToken, oracle, lowerBound, upperBound));
|
||||
}
|
||||
}
|
||||
|
@ -58,7 +58,7 @@ contract SignedMessageOracle is Oracle {
|
||||
// Result is not set yet and nonce and signer are valid
|
||||
require( !isSet
|
||||
&& _nonce > nonce
|
||||
&& signer == ecrecover(keccak256(descriptionHash, newSigner, _nonce), v, r, s));
|
||||
&& signer == ecrecover(keccak256(abi.encodePacked(descriptionHash, newSigner, _nonce)), v, r, s));
|
||||
nonce = _nonce;
|
||||
signer = newSigner;
|
||||
SignerReplacement(newSigner);
|
||||
@ -74,7 +74,7 @@ contract SignedMessageOracle is Oracle {
|
||||
{
|
||||
// Result is not set yet and signer is valid
|
||||
require( !isSet
|
||||
&& signer == ecrecover(keccak256(descriptionHash, _outcome), v, r, s));
|
||||
&& signer == ecrecover(keccak256(abi.encodePacked(descriptionHash, _outcome)), v, r, s));
|
||||
isSet = true;
|
||||
outcome = _outcome;
|
||||
OutcomeAssignment(_outcome);
|
||||
|
@ -66,7 +66,7 @@ contract MultisigWallet is Multisig, Shareable, DayLimit {
|
||||
return 0;
|
||||
}
|
||||
// determine our operation hash.
|
||||
_r = keccak256(msg.data, block.number);
|
||||
_r = keccak256(abi.encodePacked(msg.data, block.number));
|
||||
if (!confirm(_r) && txs[_r].to == address(0)) {
|
||||
txs[_r].to = _to;
|
||||
txs[_r].value = _value;
|
||||
|
Loading…
Reference in New Issue
Block a user