Update test wrt requiring storage locations.

This commit is contained in:
Daniel Kirchner
2018-07-12 12:54:42 +02:00
parent a1f54f4e40
commit 8b4b8bdbae
16 changed files with 41 additions and 56 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem {
throw;
bid(_name, msg.sender, msg.value);
} else {
Record record = m_toRecord[_name];
Record storage record = m_toRecord[_name];
if (record.owner != 0x0000000000000000000000000000000000000000)
throw;
m_toRecord[_name].owner = msg.sender;