contracts/release: regenerate with solidity v0.4.19

This commit is contained in:
Felix Lange 2018-01-04 13:38:34 +01:00
parent fbad70905d
commit 1cf15c2921
2 changed files with 7 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -14,6 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License // You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.4.18;
// ReleaseOracle is an Ethereum contract to store the current and previous // ReleaseOracle is an Ethereum contract to store the current and previous
// versions of the go-ethereum implementation. Its goal is to allow Geth to // versions of the go-ethereum implementation. Its goal is to allow Geth to
// check for new releases automatically without the need to consult a central // check for new releases automatically without the need to consult a central
@ -58,7 +60,7 @@ contract ReleaseOracle {
// isSigner is a modifier to authorize contract transactions. // isSigner is a modifier to authorize contract transactions.
modifier isSigner() { modifier isSigner() {
if (authorised[msg.sender]) { if (authorised[msg.sender]) {
_ _;
} }
} }