diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-07-11 19:23:33 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-07-12 18:54:42 +0800 |
commit | 8b4b8bdbae2f67445178ebe3b12d23bb4f46f9d2 (patch) | |
tree | 994b5301030fad5985f1a347a1603875aaca523b /test/contracts/AuctionRegistrar.cpp | |
parent | a1f54f4e40811e526541f3a54f6a19dd42c8e688 (diff) | |
download | dexon-solidity-8b4b8bdbae2f67445178ebe3b12d23bb4f46f9d2.tar.gz dexon-solidity-8b4b8bdbae2f67445178ebe3b12d23bb4f46f9d2.tar.zst dexon-solidity-8b4b8bdbae2f67445178ebe3b12d23bb4f46f9d2.zip |
Update test wrt requiring storage locations.
Diffstat (limited to 'test/contracts/AuctionRegistrar.cpp')
-rw-r--r-- | test/contracts/AuctionRegistrar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp index 3d759aa0..0fc093e7 100644 --- a/test/contracts/AuctionRegistrar.cpp +++ b/test/contracts/AuctionRegistrar.cpp @@ -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; |