mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #118 from chriseth/rejectEtherSentToLibrary
Reject ether sent to library.
This commit is contained in:
commit
8644ad6866
@ -260,6 +260,9 @@ void Compiler::appendFunctionSelector(ContractDefinition const& _contract)
|
||||
m_context << returnTag;
|
||||
appendReturnValuePacker(FunctionType(*fallback).returnParameterTypes(), _contract.isLibrary());
|
||||
}
|
||||
else if (_contract.isLibrary())
|
||||
// Reject invalid library calls and ether sent to a library.
|
||||
m_context.appendJumpTo(m_context.errorTag());
|
||||
else
|
||||
m_context << eth::Instruction::STOP; // function not found
|
||||
|
||||
|
@ -5578,6 +5578,29 @@ BOOST_AUTO_TEST_CASE(version_stamp_for_libraries)
|
||||
BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(reject_ether_sent_to_library)
|
||||
{
|
||||
char const* sourceCode = R"(
|
||||
library lib {}
|
||||
contract c {
|
||||
function f(address x) returns (bool) {
|
||||
return x.send(1);
|
||||
}
|
||||
}
|
||||
)";
|
||||
compileAndRun(sourceCode, 0, "lib");
|
||||
Address libraryAddress = m_contractAddress;
|
||||
compileAndRun(sourceCode, 10, "c");
|
||||
BOOST_CHECK_EQUAL(m_state.balance(m_contractAddress), 10);
|
||||
BOOST_CHECK_EQUAL(m_state.balance(libraryAddress), 0);
|
||||
BOOST_CHECK(callContractFunction("f(address)", encodeArgs(u160(libraryAddress))) == encodeArgs(false));
|
||||
BOOST_CHECK_EQUAL(m_state.balance(m_contractAddress), 10);
|
||||
BOOST_CHECK_EQUAL(m_state.balance(libraryAddress), 0);
|
||||
BOOST_CHECK(callContractFunction("f(address)", encodeArgs(u160(m_contractAddress))) == encodeArgs(true));
|
||||
BOOST_CHECK_EQUAL(m_state.balance(m_contractAddress), 10);
|
||||
BOOST_CHECK_EQUAL(m_state.balance(libraryAddress), 0);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user