Malleable keys: remove version byte
[novacoin.git] / src / noui.cpp
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #include "ui_interface.h"
6 #include "init.h"
7 #include "bitcoinrpc.h"
8
9 #include <string>
10
11 static int noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style)
12 {
13     printf("%s: %s\n", caption.c_str(), message.c_str());
14     fprintf(stderr, "%s: %s\n", caption.c_str(), message.c_str());
15     return 4;
16 }
17
18 static bool noui_ThreadSafeAskFee(int64_t nFeeRequired, const std::string& strCaption)
19 {
20     return true;
21 }
22
23 void noui_connect()
24 {
25     // Connect bitcoind signal handlers
26     uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);
27     uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee);
28 }