Skip to content

Commit 636a42b

Browse files
committed
Remove ui_interface ThreadSafeAskFee residue
Missed these in ca2c83d (#3415).
1 parent a5824bb commit 636a42b

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/noui.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ static bool noui_ThreadSafeMessageBox(const std::string& message, const std::str
3434
return false;
3535
}
3636

37-
static bool noui_ThreadSafeAskFee(int64_t /*nFeeRequired*/)
38-
{
39-
return true;
40-
}
41-
4237
static void noui_InitMessage(const std::string &message)
4338
{
4439
LogPrintf("init message: %s\n", message.c_str());
@@ -48,6 +43,5 @@ void noui_connect()
4843
{
4944
// Connect bitcoind signal handlers
5045
uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);
51-
uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee);
5246
uiInterface.InitMessage.connect(noui_InitMessage);
5347
}

src/ui_interface.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ class CClientUIInterface
7272
/** Show message box. */
7373
boost::signals2::signal<bool (const std::string& message, const std::string& caption, unsigned int style), boost::signals2::last_value<bool> > ThreadSafeMessageBox;
7474

75-
/** Ask the user whether they want to pay a fee or not. */
76-
boost::signals2::signal<bool (int64_t nFeeRequired), boost::signals2::last_value<bool> > ThreadSafeAskFee;
77-
7875
/** Progress message during initialization. */
7976
boost::signals2::signal<void (const std::string &message)> InitMessage;
8077

0 commit comments

Comments
 (0)