mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
@@ -762,8 +762,8 @@ BOOST_AUTO_TEST_CASE(metadata_stamp)
|
||||
}
|
||||
)";
|
||||
BOOST_REQUIRE(m_compilerStack.compile(std::string(sourceCode)));
|
||||
bytes const& bytecode = m_compilerStack.runtimeObject(":test").bytecode;
|
||||
bytes hash = dev::swarmHash(m_compilerStack.onChainMetadata(":test")).asBytes();
|
||||
bytes const& bytecode = m_compilerStack.runtimeObject("test").bytecode;
|
||||
bytes hash = dev::swarmHash(m_compilerStack.onChainMetadata("test")).asBytes();
|
||||
BOOST_REQUIRE(hash.size() == 32);
|
||||
BOOST_REQUIRE(bytecode.size() >= 2);
|
||||
size_t metadataCBORSize = (size_t(bytecode.end()[-2]) << 8) + size_t(bytecode.end()[-1]);
|
||||
|
||||
@@ -67,11 +67,7 @@ public:
|
||||
);
|
||||
BOOST_ERROR("Compiling contract failed");
|
||||
}
|
||||
eth::LinkerObject obj;
|
||||
if (_contractName.empty())
|
||||
obj = m_compiler.object(_contractName);
|
||||
else
|
||||
obj = m_compiler.object(":" + _contractName);
|
||||
eth::LinkerObject obj = m_compiler.object(_contractName);
|
||||
BOOST_REQUIRE(obj.linkReferences.empty());
|
||||
sendMessage(obj.bytecode + _arguments, true, _value);
|
||||
return m_output;
|
||||
|
||||
Reference in New Issue
Block a user