diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-18 13:43:59 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-18 13:46:10 +0100 |
commit | 636a42bd0e208d1d49dab6a95e23863736823883 (patch) | |
tree | e1d725507e79b1995ea08f43c1bc95cb304fbd85 /src/noui.cpp | |
parent | a5824bb3c6424189e50070b6c278497532cdcd5e (diff) |
Remove ui_interface ThreadSafeAskFee residue
Missed these in ca2c83d (#3415).
Diffstat (limited to 'src/noui.cpp')
-rw-r--r-- | src/noui.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/noui.cpp b/src/noui.cpp index fd285c5719..86954f3c34 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -34,11 +34,6 @@ static bool noui_ThreadSafeMessageBox(const std::string& message, const std::str return false; } -static bool noui_ThreadSafeAskFee(int64_t /*nFeeRequired*/) -{ - return true; -} - static void noui_InitMessage(const std::string &message) { LogPrintf("init message: %s\n", message.c_str()); @@ -48,6 +43,5 @@ void noui_connect() { // Connect bitcoind signal handlers uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox); - uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee); uiInterface.InitMessage.connect(noui_InitMessage); } |