aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-09-27 01:49:30 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-11-22 03:21:14 +0800
commit7a26ede827952a10f6ffe3b409104396de46b9ce (patch)
tree8c3c543ee6bc3f84d58e5cbc96497945fc17a382 /test
parent2bf5e6fa9c665a0f1893603eb8f39a2ce8b1cbe6 (diff)
downloaddexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar.gz
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar.bz2
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar.lz
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar.xz
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.tar.zst
dexon-solidity-7a26ede827952a10f6ffe3b409104396de46b9ce.zip
Fix constructor in AuctionRegistrar
Diffstat (limited to 'test')
-rw-r--r--test/contracts/AuctionRegistrar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp
index eb274c09..6ce61a6e 100644
--- a/test/contracts/AuctionRegistrar.cpp
+++ b/test/contracts/AuctionRegistrar.cpp
@@ -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.
}