mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update test wrt requiring storage locations.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user