From a9edc7b1a601747f96e47fe60a5fc10df489696f Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 10 Sep 2015 12:01:05 +0200 Subject: Transition from bytecode to more general linker objects. --- test/contracts/AuctionRegistrar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/contracts/AuctionRegistrar.cpp') diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp index 0935c874..a8b57f2f 100644 --- a/test/contracts/AuctionRegistrar.cpp +++ b/test/contracts/AuctionRegistrar.cpp @@ -233,7 +233,7 @@ protected: m_compiler.reset(false, m_addStandardSources); m_compiler.addSource("", registrarCode); ETH_TEST_REQUIRE_NO_THROW(m_compiler.compile(m_optimize, m_optimizeRuns), "Compiling contract failed"); - s_compiledRegistrar.reset(new bytes(m_compiler.bytecode("GlobalRegistrar"))); + s_compiledRegistrar.reset(new bytes(m_compiler.object("GlobalRegistrar").bytecode)); } sendMessage(*s_compiledRegistrar, true); BOOST_REQUIRE(!m_output.empty()); -- cgit