Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multisignature and OP_EVAL support #669

Merged
merged 12 commits into from
Dec 20, 2011
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Global fixture to send output to console instead of debug.log
  • Loading branch information
gavinandresen committed Dec 19, 2011
commit cc40ba2151a627b6da9af4932e0bee58e69aacb5
10 changes: 10 additions & 0 deletions src/test/test_bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
#include "main.h"
#include "wallet.h"

extern bool fPrintToConsole;
struct TestingSetup {
TestingSetup() {
fPrintToConsole = true; // don't want to write to debug.log file
}
~TestingSetup() { }
};

BOOST_GLOBAL_FIXTURE(TestingSetup);

CWallet* pwalletMain;

void Shutdown(void* parg)
Expand Down