only accept transactions sent by IP address if -allowreceivebyip is specified
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@156 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
8
ui.cpp
8
ui.cpp
@@ -2186,8 +2186,12 @@ void CSendingDialog::OnReply2(CDataStream& vRecv)
|
||||
if (nRet > 0)
|
||||
{
|
||||
string strMessage;
|
||||
vRecv >> strMessage;
|
||||
Error(_("Transfer was not accepted"));
|
||||
if (!vRecv.empty())
|
||||
vRecv >> strMessage;
|
||||
if (nRet == 2)
|
||||
Error(_("Recipient is not accepting transactions sent by IP address"));
|
||||
else
|
||||
Error(_("Transfer was not accepted"));
|
||||
//// todo: enlarge the window and enable a hidden white box to put seller's message
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user