aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts/AuctionRegistrar.cpp
diff options
context:
space:
mode:
authorChase McDermott <chasemcd1745@tamu.edu>2018-08-07 21:19:50 +0800
committerchriseth <chris@ethereum.org>2018-08-15 00:53:06 +0800
commitb000a022f2d7c1057ade755ed1ea8c70380688a5 (patch)
tree1de31eef468d3dfea1dd9b129889e70f86730a4a /test/contracts/AuctionRegistrar.cpp
parente3b6c5a4bdbc3066889b6898e5e07bfd599a4d37 (diff)
downloaddexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.tar.gz
dexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.tar.zst
dexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.zip
Update tests
Diffstat (limited to 'test/contracts/AuctionRegistrar.cpp')
-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 4ff55b75..e178748f 100644
--- a/test/contracts/AuctionRegistrar.cpp
+++ b/test/contracts/AuctionRegistrar.cpp
@@ -132,7 +132,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
}
}
- function reserve(string _name) external payable {
+ function reserve(string calldata _name) external payable {
if (bytes(_name).length == 0)
revert();
bool needAuction = requiresAuction(_name);