mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 03:03:22 -03:00
Merge pull request #1496 from xanatos/patch-2
= instead of == in multisig_tests.cpp
This commit is contained in:
commit
9700f212ad
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1)
|
|||
BOOST_CHECK(ExtractDestinations(s, whichType, addrs, nRequired));
|
||||
BOOST_CHECK(addrs[0] == keyaddr[0]);
|
||||
BOOST_CHECK(addrs[1] == keyaddr[1]);
|
||||
BOOST_CHECK(nRequired = 1);
|
||||
BOOST_CHECK(nRequired == 1);
|
||||
BOOST_CHECK(IsMine(keystore, s));
|
||||
BOOST_CHECK(!IsMine(emptykeystore, s));
|
||||
BOOST_CHECK(!IsMine(partialkeystore, s));
|
||||
|
|
Loading…
Add table
Reference in a new issue