diff options
| author | Gavin Andresen <[email protected]> | 2012-09-07 14:30:53 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-10-29 13:34:35 -0400 |
| commit | c4d884e20eae34bb157a8bd332b733d6d4313254 (patch) | |
| tree | 030057501de864752ca3ad4ee2799336c366dfab /src/test/rpc_tests.cpp | |
| parent | Merge pull request #1710 from sipa/dosp2sh (diff) | |
| download | discoin-c4d884e20eae34bb157a8bd332b733d6d4313254.tar.xz discoin-c4d884e20eae34bb157a8bd332b733d6d4313254.zip | |
No need for test fixture now that multisig is enabled on main network.
Diffstat (limited to 'src/test/rpc_tests.cpp')
| -rw-r--r-- | src/test/rpc_tests.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index eb820ade6..505ec8f5f 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -22,14 +22,7 @@ createArgs(int nRequired, const char* address1=NULL, const char* address2=NULL) return result; } -// This can be removed this when addmultisigaddress is enabled on main net: -struct TestNetFixture -{ - TestNetFixture() { fTestNet = true; } - ~TestNetFixture() { fTestNet = false; } -}; - -BOOST_FIXTURE_TEST_CASE(rpc_addmultisig, TestNetFixture) +BOOST_AUTO_TEST_CASE(rpc_addmultisig) { rpcfn_type addmultisig = tableRPC["addmultisigaddress"]->actor; |