Merge pull request #5473 from ethereum/tests-constructor

Fix constructor in AuctionRegistrar
This commit is contained in:
Alex Beregszaszi 2018-11-21 19:28:13 +00:00 committed by GitHub
commit 7d8c1fc53b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
uint constant c_renewalInterval = 365 days;
uint constant c_freeBytes = 12;
function Registrar() public {
constructor() public {
// TODO: Populate with hall-of-fame.
}