mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #2524 from chriseth/sol_windowsFix
Compile fix for Windows.
This commit is contained in:
commit
287088f380
@ -523,8 +523,10 @@ BOOST_AUTO_TEST_CASE(initial_owners)
|
|||||||
BOOST_CHECK(callContractFunction("m_numOwners()") == encodeArgs(u256(8)));
|
BOOST_CHECK(callContractFunction("m_numOwners()") == encodeArgs(u256(8)));
|
||||||
BOOST_CHECK(callContractFunction("isOwner(address)", h256(m_sender, h256::AlignRight)) == encodeArgs(true));
|
BOOST_CHECK(callContractFunction("isOwner(address)", h256(m_sender, h256::AlignRight)) == encodeArgs(true));
|
||||||
for (u256 const& owner: owners)
|
for (u256 const& owner: owners)
|
||||||
|
{
|
||||||
BOOST_CHECK(callContractFunction("isOwner(address)", owner) == encodeArgs(true));
|
BOOST_CHECK(callContractFunction("isOwner(address)", owner) == encodeArgs(true));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(multisig_value_transfer)
|
BOOST_AUTO_TEST_CASE(multisig_value_transfer)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user