diff options
author | chriseth <c@ethdev.com> | 2015-07-21 00:44:06 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-07-21 00:44:53 +0800 |
commit | f43b7f082855acd222eb8585718434bab72f1f5a (patch) | |
tree | 041c75a0dec589844f5976d56f7dc1e20d2f3152 | |
parent | 8e4517a015b1f5d5068233505d4e6ee2c8359521 (diff) | |
download | dexon-solidity-f43b7f082855acd222eb8585718434bab72f1f5a.tar.gz dexon-solidity-f43b7f082855acd222eb8585718434bab72f1f5a.tar.zst dexon-solidity-f43b7f082855acd222eb8585718434bab72f1f5a.zip |
Windows fix.
-rw-r--r-- | libsolidity/SolidityWallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/SolidityWallet.cpp b/libsolidity/SolidityWallet.cpp index 707f49b1..b5f0f724 100644 --- a/libsolidity/SolidityWallet.cpp +++ b/libsolidity/SolidityWallet.cpp @@ -523,7 +523,9 @@ BOOST_AUTO_TEST_CASE(initial_owners) BOOST_CHECK(callContractFunction("m_numOwners()") == encodeArgs(u256(8))); BOOST_CHECK(callContractFunction("isOwner(address)", h256(m_sender, h256::AlignRight)) == encodeArgs(true)); for (u256 const& owner: owners) + { BOOST_CHECK(callContractFunction("isOwner(address)", owner) == encodeArgs(true)); + } } BOOST_AUTO_TEST_CASE(multisig_value_transfer) |